Ignore:
Timestamp:
Mar 10, 2019, 9:25:10 PM (6 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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
Message:

formatting output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/prelude/prelude-gen.cc

    rb38433b rb830e046  
    1010// Created On       : Sat Feb 16 08:44:58 2019
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Feb 18 09:47:33 2019
    13 // Update Count     : 22
     12// Last Modified On : Fri Mar  8 16:00:22 2019
     13// Update Count     : 26
    1414//
    1515
     
    287287        cout << "forall(ftype FT) FT *                  ?=?( FT *          &, zero_t );" << endl;
    288288        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;
    291291        cout << endl;
    292292
     
    295295        cout << "///////////////////////" << endl;
    296296
    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;
    304303
    305304        for (auto op : pointerOperators) {
Note: See TracChangeset for help on using the changeset viewer.