Changeset b830e046
- Timestamp:
- Mar 10, 2019, 9:25:10 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- f910df5
- Parents:
- b38433b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/prelude-gen.cc
rb38433b rb830e046 10 10 // Created On : Sat Feb 16 08:44:58 2019 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Feb 18 09:47:33201913 // Update Count : 2 212 // Last Modified On : Fri Mar 8 16:00:22 2019 13 // Update Count : 26 14 14 // 15 15 … … 287 287 cout << "forall(ftype FT) FT * ?=?( FT * &, zero_t );" << endl; 288 288 cout << "forall(ftype FT) FT * ?=?( FT * volatile &, zero_t );" << endl; 289 cout << "forall( ftype FT) void ?{}( FT * & );" << endl;290 cout << "forall( ftype FT) void ^?{}( FT * & );" << endl;289 cout << "forall(ftype FT) void ?{}( FT * & );" << endl; 290 cout << "forall(ftype FT) void ^?{}( FT * & );" << endl; 291 291 cout << endl; 292 292 … … 295 295 cout << "///////////////////////" << endl; 296 296 297 cout << "forall( ftype FT ) FT * ?=?( FT *&, FT * );" << endl; 298 cout << "forall( ftype FT ) FT * ?=?( FT * volatile &, FT * );" << endl; 299 cout << "forall( ftype FT ) int !?( FT * );" << endl; 300 cout << "forall( ftype FT ) signed int ?==?( FT *, FT * );" << endl; 301 cout << "forall( ftype FT ) signed int ?!=?( FT *, FT * );" << endl; 302 cout << "forall( ftype FT ) FT & *?( FT * );" << endl; 303 297 cout << "forall(ftype FT) FT * ?=?( FT *&, FT * );" << endl; 298 cout << "forall(ftype FT) FT * ?=?( FT * volatile &, FT * );" << endl; 299 cout << "forall(ftype FT) int !?( FT * );" << endl; 300 cout << "forall(ftype FT) signed int ?==?( FT *, FT * );" << endl; 301 cout << "forall(ftype FT) signed int ?!=?( FT *, FT * );" << endl; 302 cout << "forall(ftype FT) FT & *?( FT * );" << endl; 304 303 305 304 for (auto op : pointerOperators) {
Note: See TracChangeset
for help on using the changeset viewer.