Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/literals.cfa

    rc5b55c4 re782290  
    1010// Created On       : Sat Sep  9 16:34:38 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Aug 20 13:51:12 2020
    13 // Update Count     : 225
     12// Last Modified On : Tue Feb 12 08:07:39 2019
     13// Update Count     : 224
    1414//
    1515
     
    214214        -01234567_l8;  -01234567_l16;  -01234567_l32;  -01234567_l64;  -01234567_l8u;  -01234567_ul16;  -01234567_l32u;  -01234567_ul64;
    215215
    216 #if defined( __SIZEOF_INT128__ )
     216#ifdef __LP64__ // 64-bit processor
    217217        01234567_l128;   01234567_ul128;
    218218        +01234567_l128;  +01234567_ul128;
    219219        -01234567_l128;  -01234567_ul128;
    220 #endif // __SIZEOF_INT128__
     220#endif // __LP64__
    221221
    222222        // decimal
     
    225225        -1234567890L8;  -1234567890L16;  -1234567890l32;  -1234567890l64;  -1234567890UL8;  -1234567890L16U;  -1234567890Ul32;  -1234567890l64u;
    226226
    227 #if defined( __SIZEOF_INT128__ )
     227#ifdef __LP64__ // 64-bit processor
    228228        1234567890l128;   1234567890l128u;
    229229        +1234567890l128;  +1234567890l128u;
    230230        -1234567890l128;  -1234567890l128u;
    231     1234567890123456789_L128u; 1234567890123456789_L128u;
    232         18446708753438544741_l64u; 18446708753438544741_Ul64;
    233 #endif // __SIZEOF_INT128__
     231#endif // __LP64__
    234232
    235233        // hexadecimal
Note: See TracChangeset for help on using the changeset viewer.