- Timestamp:
- Jun 3, 2016, 1:12:02 PM (9 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, with_gc
- Children:
- 10a7775
- Parents:
- 2edd5502 (diff), aec9a67 (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. - Location:
- src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.in
r2edd5502 re01bfbc 240 240 CC = @CC@ 241 241 CCDEPMODE = @CCDEPMODE@ 242 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 242 243 CFA_BINDIR = @CFA_BINDIR@ 243 244 CFA_INCDIR = @CFA_INCDIR@ … … 258 259 EGREP = @EGREP@ 259 260 EXEEXT = @EXEEXT@ 260 GCC_PATH = @GCC_PATH@261 261 GREP = @GREP@ 262 262 INSTALL = @INSTALL@ -
src/driver/Makefile.in
r2edd5502 re01bfbc 80 80 CC = @CC@ 81 81 CCDEPMODE = @CCDEPMODE@ 82 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 82 83 CFA_BINDIR = @CFA_BINDIR@ 83 84 CFA_INCDIR = @CFA_INCDIR@ … … 98 99 EGREP = @EGREP@ 99 100 EXEEXT = @EXEEXT@ 100 GCC_PATH = @GCC_PATH@101 101 GREP = @GREP@ 102 102 INSTALL = @INSTALL@ -
src/driver/cc1.cc
r2edd5502 re01bfbc 10 10 // Created On : Fri Aug 26 14:23:51 2005 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu May 5 16:04:30201613 // Update Count : 7 712 // Last Modified On : Thu Jun 2 17:24:26 2016 13 // Update Count : 79 14 14 // 15 15 … … 30 30 31 31 32 string compiler_name( GCC_PATH );// path/name of C compiler32 string compiler_name( CFA_BACKEND_CC ); // path/name of C compiler 33 33 34 34 string D__GCC_BPREFIX__( "-D__GCC_BPREFIX__=" ); -
src/driver/cfa.cc
r2edd5502 re01bfbc 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Apr 20 18:31:28201613 // Update Count : 13 312 // Last Modified On : Thu Jun 2 17:24:25 2016 13 // Update Count : 137 14 14 // 15 15 … … 75 75 string langstd; // language standard 76 76 77 string compiler_path( GCC_PATH );// path/name of C compiler77 string compiler_path( CFA_BACKEND_CC ); // path/name of C compiler 78 78 string compiler_name; // name of C compiler 79 79 … … 317 317 nargs += 1; 318 318 } else { 319 cerr << argv[0] << " error, compiler " << compiler_name << " notsupported." << endl;319 cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl; 320 320 exit( EXIT_FAILURE ); 321 321 } // if -
src/examples/Makefile.in
r2edd5502 re01bfbc 86 86 CC = @CFA_BINDIR@/cfa 87 87 CCDEPMODE = @CCDEPMODE@ 88 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 88 89 CFA_BINDIR = @CFA_BINDIR@ 89 90 CFA_INCDIR = @CFA_INCDIR@ … … 106 107 EGREP = @EGREP@ 107 108 EXEEXT = @EXEEXT@ 108 GCC_PATH = @GCC_PATH@109 109 GREP = @GREP@ 110 110 INSTALL = @INSTALL@ -
src/libcfa/Makefile.in
r2edd5502 re01bfbc 113 113 CC = ${abs_top_srcdir}/src/driver/cfa 114 114 CCDEPMODE = @CCDEPMODE@ 115 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 115 116 CFA_BINDIR = @CFA_BINDIR@ 116 117 CFA_INCDIR = @CFA_INCDIR@ … … 131 132 EGREP = @EGREP@ 132 133 EXEEXT = @EXEEXT@ 133 GCC_PATH = @GCC_PATH@134 134 GREP = @GREP@ 135 135 INSTALL = @INSTALL@ -
src/libcfa/iostream.c
r2edd5502 re01bfbc 9 9 // Author : Peter A. Buhr 10 10 // Created On : Wed May 27 17:56:53 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Mon May 02 15:13:55201613 // Update Count : 30 211 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu May 26 10:08:31 2016 13 // Update Count : 305 14 14 // 15 15 … … 21 21 #include <float.h> // DBL_DIG, LDBL_DIG 22 22 #include <complex.h> // creal, cimag 23 #include <ctype.h> // isspace, ispunct24 23 } 25 24 … … 336 335 } // ?|? 337 336 338 _Istream_cstrUC cstr( char * str ) { _Istream_cstrUC s = { str }; return s; }337 _Istream_cstrUC cstr( char * str ) { return (_Istream_cstrUC){ str }; } 339 338 forall( dtype istype | istream( istype ) ) 340 339 istype * ?|?( istype * is, _Istream_cstrUC cstr ) { … … 343 342 } // cstr 344 343 345 _Istream_cstrC cstr( char * str, int size ) { _Istream_cstrC s = { str, size }; return s; }344 _Istream_cstrC cstr( char * str, int size ) { return (_Istream_cstrC){ str, size }; } 346 345 forall( dtype istype | istream( istype ) ) 347 346 istype * ?|?( istype * is, _Istream_cstrC cstr ) {
Note:
See TracChangeset
for help on using the changeset viewer.