Changeset 04273e9 for src/main.cc
- Timestamp:
- Aug 8, 2016, 5:29:03 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 03da511
- Parents:
- 0853178 (diff), 7bf7fb9 (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. - File:
-
- 1 edited
-
src/main.cc (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r0853178 r04273e9 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 5 15:23:11 201613 // Update Count : 2 0912 // Last Modified On : Sat Aug 6 16:17:41 2016 13 // Update Count : 210 14 14 // 15 15 … … 28 28 #include "GenPoly/Box.h" 29 29 #include "GenPoly/CopyParams.h" 30 #include "GenPoly/InstantiateGeneric.h" 30 31 #include "CodeGen/Generate.h" 31 32 #include "CodeGen/FixNames.h" … … 192 193 input = fopen( argv[ optind ], "r" ); 193 194 if ( ! input ) { 194 std::cout << "Error: can 't open " << argv[ optind ] << std::endl;195 std::cout << "Error: cannot open " << argv[ optind ] << std::endl; 195 196 exit( EXIT_FAILURE ); 196 197 } // if … … 218 219 FILE * builtins = fopen( libcfap | treep ? "builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" ); 219 220 if ( builtins == NULL ) { 220 std::cerr << "Error: can 't open builtins.cf" << std::endl;221 std::cerr << "Error: cannot open builtins.cf" << std::endl; 221 222 exit( EXIT_FAILURE ); 222 223 } // if … … 226 227 FILE * extras = fopen( libcfap | treep ? "extras.cf" : CFA_LIBDIR "/extras.cf", "r" ); 227 228 if ( extras == NULL ) { 228 std::cerr << "Error: can 't open extras.cf" << std::endl;229 std::cerr << "Error: cannot open extras.cf" << std::endl; 229 230 exit( EXIT_FAILURE ); 230 231 } // if … … 235 236 FILE * prelude = fopen( treep ? "prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" ); 236 237 if ( prelude == NULL ) { 237 std::cerr << "Error: can 't open prelude.cf" << std::endl;238 std::cerr << "Error: cannot open prelude.cf" << std::endl; 238 239 exit( EXIT_FAILURE ); 239 240 } // if … … 309 310 } 310 311 312 OPTPRINT("instantiateGenerics") 313 GenPoly::instantiateGeneric( translationUnit ); 311 314 OPTPRINT( "copyParams" ); 312 315 GenPoly::copyParams( translationUnit );
Note:
See TracChangeset
for help on using the changeset viewer.