Changes in / [421edab:05d47278]


Ignore:
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    r421edab r05d47278  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jan 20 12:54:50 2016
    13 // Update Count     : 241
     12// Last Modified On : Thu Sep 17 15:24:08 2015
     13// Update Count     : 231
    1414//
    1515
     
    392392
    393393        void CodeGenerator::visit( CastExpr *castExpr ) {
    394                 output << "(";
    395                 if ( castExpr->get_results().empty() ) {
    396                         output << "(void)" ;
    397                 } else if ( ! castExpr->get_results().front()->get_isLvalue() ) {
    398                         // at least one result type of cast, but not an lvalue
    399                         output << "(";
    400                         output << genType( castExpr->get_results().front(), "" );
     394                // if the cast is to an lvalue type, then the cast
     395                // should be dropped, since the result of a cast is
     396                // never an lvalue in C
     397                if ( castExpr->get_results().front()->get_isLvalue() ) {
     398                        castExpr->get_arg()->accept( *this );
     399                } else {
     400                        output << "((";
     401                        if ( castExpr->get_results().empty() ) {
     402                                output << "void" ;
     403                        } else {
     404                                output << genType( castExpr->get_results().front(), "" );
     405                        } // if
    401406                        output << ")";
    402                 } else {
    403                         // otherwise, the cast is to an lvalue type, so the cast
    404                         // should be dropped, since the result of a cast is
    405                         // never an lvalue in C
     407                        castExpr->get_arg()->accept( *this );
     408                        output << ")";                 
    406409                }
    407                 castExpr->get_arg()->accept( *this );
    408                 output << ")";
    409410        }
    410411 
  • src/GenPoly/Specialize.cc

    r421edab r05d47278  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Specialize.cc --
     7// Specialize.cc -- 
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jan 20 12:40:33 2016
    13 // Update Count     : 18
     12// Last Modified On : Tue Sep 22 14:04:13 2015
     13// Update Count     : 15
    1414//
    1515
     
    140140                return new AddressExpr( new VariableExpr( thunkFunc ) );
    141141        }
    142 
     142       
    143143        Expression * Specialize::doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams ) {
    144                 assert( ! actual->get_results().empty() );
    145144                if ( needsSpecialization( formalType, actual->get_results().front(), env ) ) {
    146145                        FunctionType *funType;
     
    199198        Expression * Specialize::mutate( CastExpr *castExpr ) {
    200199                castExpr->get_arg()->acceptMutator( *this );
    201                 if ( castExpr->get_results().empty() ) {
    202                         // can't specialize if we don't have a return value
    203                         return castExpr;
    204                 }
    205200                Expression *specialized = doSpecialization( castExpr->get_results().front(), castExpr->get_arg() );
    206201                if ( specialized != castExpr->get_arg() ) {
Note: See TracChangeset for help on using the changeset viewer.