Changes in tests/literals.cfa [c5b55c4:e782290]
- File:
-
- 1 edited
-
tests/literals.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/literals.cfa
rc5b55c4 re782290 10 10 // Created On : Sat Sep 9 16:34:38 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Aug 20 13:51:12 202013 // Update Count : 22 512 // Last Modified On : Tue Feb 12 08:07:39 2019 13 // Update Count : 224 14 14 // 15 15 … … 214 214 -01234567_l8; -01234567_l16; -01234567_l32; -01234567_l64; -01234567_l8u; -01234567_ul16; -01234567_l32u; -01234567_ul64; 215 215 216 #if defined( __SIZEOF_INT128__ )216 #ifdef __LP64__ // 64-bit processor 217 217 01234567_l128; 01234567_ul128; 218 218 +01234567_l128; +01234567_ul128; 219 219 -01234567_l128; -01234567_ul128; 220 #endif // __ SIZEOF_INT128__220 #endif // __LP64__ 221 221 222 222 // decimal … … 225 225 -1234567890L8; -1234567890L16; -1234567890l32; -1234567890l64; -1234567890UL8; -1234567890L16U; -1234567890Ul32; -1234567890l64u; 226 226 227 #if defined( __SIZEOF_INT128__ )227 #ifdef __LP64__ // 64-bit processor 228 228 1234567890l128; 1234567890l128u; 229 229 +1234567890l128; +1234567890l128u; 230 230 -1234567890l128; -1234567890l128u; 231 1234567890123456789_L128u; 1234567890123456789_L128u; 232 18446708753438544741_l64u; 18446708753438544741_Ul64; 233 #endif // __SIZEOF_INT128__ 231 #endif // __LP64__ 234 232 235 233 // hexadecimal
Note:
See TracChangeset
for help on using the changeset viewer.