Ignore:
Timestamp:
Jun 24, 2015, 4:12:31 PM (9 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
1869adf
Parents:
94b4364 (diff), de62360d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into resolver

Conflicts:

src/CodeGen/CodeGenerator.cc
src/Parser/ExpressionNode.cc
src/ResolvExpr/Resolver.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    r94b4364 r94e0864d  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Mon Jun 15 12:47:16 2015
    13 // Update Count     : 142
     12// Last Modified On : Wed Jun 24 16:11:41 2015
     13// Update Count     : 143
    1414//
    1515
     
    7777                if ( functionDecl->get_isInline() ) {
    7878                        output << "inline ";
     79                } // if
     80                if ( functionDecl->get_isNoreturn() ) {
     81                        output << "_Noreturn ";
    7982                } // if
    8083                output << genType( functionDecl->get_functionType(), mangleName( functionDecl ) );
     
    303306                                  case OT_PREFIX:
    304307                                  case OT_PREFIXASSIGN:
     308                                  case OT_LABELADDRESS:
    305309                                        assert( untypedExpr->get_args().size() == 1 );
    306310                                        output << "(";
     
    326330                                        output << ")";
    327331                                        break;
    328              
     332                                       
    329333                                  case OT_CONSTANT:
    330334                                        // there are no intrinsic definitions of 0 or 1 as functions
     
    642646                        break;
    643647                  case DeclarationNode::Inline:
    644                         // handled as special via isInline flag (FIX)
     648                        output << "inline ";
    645649                        break;
    646650                  case DeclarationNode::Fortran:
    647                         // not handled
    648651                        output << "fortran ";
    649652                        break;
    650653                  case DeclarationNode::Noreturn:
    651                         // not handled
    652654                        output << "_Noreturn ";
    653655                        break;
    654656                  case DeclarationNode::Threadlocal:
    655                         // not handled
    656657                        output << "_Thread_local ";
    657658                        break;
Note: See TracChangeset for help on using the changeset viewer.