Ignore:
File:
1 edited

Legend:

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

    rc41c18a6 rb830e046  
    1010// Created On       : Sat Feb 16 08:44:58 2019
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr  2 17:18:24 2019
    13 // Update Count     : 37
     12// Last Modified On : Fri Mar  8 16:00:22 2019
     13// Update Count     : 26
    1414//
    1515
     
    118118        { "?!=?", false, "signed int", Normal, "" },
    119119        { "?=?", true, "", Normal, "" }, // void * LHS, zero_t RHS ???
    120 //      { "*?", false, "&", Normal, " | sized(DT)" }, // & ???
    121         { "*?", false, "&", Normal, "" }, // & ???
     120        { "*?", false, "&", Normal, " | sized(DT)" }, // & ???
    122121
    123122        { "?-?", false, "ptrdiff_t", Normal, " | sized(DT)" },
     
    209208                cout << "void ?{} (" << type << " &);" << endl;
    210209                cout << "void ?{} (" << type << " &, " << type << ");" << endl;
    211                 cout << type << " ?=? (" << type << " &, " << type << ")";
     210                cout << type << "  ?=? (" << type << " &, " << type << ")";
    212211                if ( do_volatile ) {
    213                         cout << ", ?=?(volatile " << type << " &, " << type << ")";
     212                        cout << ",  ?=?(volatile " << type << " &, " << type << ")";
    214213                }
    215214                cout << ";" << endl;
     
    218217
    219218        otype("zero_t");
    220         cout << endl;
    221219        otype("one_t");
    222         cout << endl;
    223220        otype("_Bool", true);
    224221        cout << endl;
     
    228225                cout << "void ?{}(" << type.name << " &, " << type.name << ");" << endl;
    229226                cout << "void ?{}(" << type.name << " &, zero_t);" << endl;
    230                 cout << "void ?{}(" << type.name << " &, one_t);" << endl;
    231227                cout << "void ^?{}(" << type.name << " &);" << endl;
    232228                cout << endl;
Note: See TracChangeset for help on using the changeset viewer.