Changeset 7c9ac4a
- Timestamp:
- Nov 18, 2020, 4:49:09 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- f9b2e73
- Parents:
- 69d1748 (diff), b4130f9 (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. - Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r69d1748 r7c9ac4a 48 48 libcfa/x64-debug/ 49 49 libcfa/x64-nodebug/ 50 libcfa/x64-nolib/51 50 libcfa/x86-debug/ 52 51 libcfa/x86-nodebug/ 53 libcfa/x86-nolib/ 54 libcfa/arm-debug/ 55 libcfa/arm-nodebug/ 56 libcfa/arm-nolib/ 52 libcfa/arm64-debug/ 53 libcfa/arm64-nodebug/ 57 54 58 55 # generated by bison and lex from parser.yy and lex.ll -
doc/theses/andrew_beach_MMath/cfalab.sty
r69d1748 r7c9ac4a 72 72 \renewcommand\textunderscore{\csuse{cfalab@textunderscore@#1}}} 73 73 74 % This is executed very early in the \begin{document} code. 75 \AtEndPreamble{ 76 \@ifpackageloaded{hyperref}{ 77 % Convert symbols to pdf compatable forms when required. 78 \pdfstringdefDisableCommands{ 79 \def\CFA{CFA} 80 } 81 }{} 82 } 83 74 84 \endinput -
driver/cc1.cc
r69d1748 r7c9ac4a 10 10 // Created On : Fri Aug 26 14:23:51 2005 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Aug 16 21:03:02202013 // Update Count : 41 312 // Last Modified On : Tue Nov 17 14:27:08 2020 13 // Update Count : 414 14 14 // 15 15 … … 97 97 } else if ( val == "-CFA" ) { 98 98 CFA_flag = true; 99 } else if ( val == "-save-temps" ) {99 } else if ( val == "-save-temps" || val == "--save-temps" ) { 100 100 save_temps = true; 101 101 } else if ( prefix( val, "-o=" ) ) { // output file for -CFA -
driver/cfa.cc
r69d1748 r7c9ac4a 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Sep 2 17:59:20202013 // Update Count : 4 3812 // Last Modified On : Tue Nov 17 14:27:28 2020 13 // Update Count : 440 14 14 // 15 15 … … 231 231 debugging = true; // symbolic debugging required 232 232 args[nargs++] = argv[i]; // pass flag along 233 } else if ( arg == "-save-temps" ) {233 } else if ( arg == "-save-temps" || arg == "--save-temps" ) { 234 234 args[nargs++] = argv[i]; // pass flag along 235 235 Putenv( argv, arg ); // save cfa-cpp output -
tests/manipulatorsOutput2.cfa
r69d1748 r7c9ac4a 7 7 // Created On : Sat Jun 8 18:04:11 2019 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : Mon Jun 10 12:37:57 201910 // Update Count : 89 // Last Modified On : Sun Nov 15 08:11:53 2020 10 // Update Count : 9 11 11 // 12 12 … … 52 52 // Local Variables: // 53 53 // tab-width: 4 // 54 // compile-command: "cfa -Wall -Wextra amanipulatorsOutput2.cfa" //54 // compile-command: "cfa -Wall -Wextra manipulatorsOutput2.cfa" // 55 55 // End: //
Note: See TracChangeset
for help on using the changeset viewer.