Changeset b8508a2
- Timestamp:
- May 15, 2015, 3:18:13 PM (10 years ago)
- 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:
- b87a5ed
- Parents:
- 5c7fb6c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
r5c7fb6c rb8508a2 8 8 // Created On : Tue Aug 20 13:44:49 2002 9 9 // Last Modified By : Peter A. Buhr 10 // Last Modified On : Tue Nov 11 09:19:15 201411 // Update Count : 10 610 // Last Modified On : Fri May 15 15:01:26 2015 11 // Update Count : 108 12 12 // 13 13 … … 294 294 args[nargs] = "-Wno-deprecated"; 295 295 nargs += 1; 296 args[nargs] = "- -std=c99";296 args[nargs] = "-std=c99"; 297 297 nargs += 1; 298 298 args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str(); -
translator/GenPoly/Box.cc
r5c7fb6c rb8508a2 1059 1059 TypeInstType *typeInst = dynamic_cast< TypeInstType *>( objectDecl->get_type() ); 1060 1060 assert( typeInst ); 1061 UntypedExpr *alloc = new UntypedExpr( new NameExpr( " alloca" ) );1061 UntypedExpr *alloc = new UntypedExpr( new NameExpr( "__builtin_alloca" ) ); 1062 1062 alloc->get_args().push_back( new NameExpr( typeInst->get_name() ) ); 1063 1063 UntypedExpr *assign = new UntypedExpr( new NameExpr( "?=?" ) );
Note: See TracChangeset
for help on using the changeset viewer.