- Timestamp:
- Jul 20, 2021, 4:29:28 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- ba8547e
- Parents:
- 0c730d9
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CompilationState.cc
r0c730d9 r00da199 9 9 // Author : Rob Schluntz 10 10 // Created On : Mon Ju1 30 10:47:01 2018 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Fri May 3 13:45:23 201913 // Update Count : 411 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:27:35 2021 13 // Update Count : 5 14 14 // 15 15 … … 23 23 ctorinitp = false, 24 24 declstatsp = false, 25 exdeclp = false, 25 26 exprp = false, 26 27 expraltp = false, -
src/CompilationState.h
r0c730d9 r00da199 9 9 // Author : Rob Schluntz 10 10 // Created On : Mon Ju1 30 10:47:01 2018 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Fri May 3 13:43:21 201913 // Update Count : 411 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:27:35 2021 13 // Update Count : 5 14 14 // 15 15 … … 22 22 ctorinitp, 23 23 declstatsp, 24 exdeclp, 24 25 exprp, 25 26 expraltp, -
src/main.cc
r0c730d9 r00da199 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04: 10:50202113 // Update Count : 65 712 // Last Modified On : Tue Jul 20 04:27:35 2021 13 // Update Count : 658 14 14 // 15 15 … … 308 308 309 309 PASS( "Translate Exception Declarations", ControlStruct::translateExcept( translationUnit ) ); 310 if ( exdeclp ) { 311 dump( translationUnit ); 312 return EXIT_SUCCESS; 313 } // if 310 314 311 315 // add the assignment statement after the initialization of a type parameter … … 552 556 // code dumps 553 557 { "ast", astp, true, "print AST after parsing" }, 558 { "exdecl", exdeclp, true, "print AST after translating exception decls" }, 554 559 { "symevt", symtabp, true, "print AST after symbol table events" }, 555 560 { "altexpr", expraltp, true, "print alternatives for expressions" },
Note: See TracChangeset
for help on using the changeset viewer.