Changeset c5b55c4 for tests/literals.cfa
- Timestamp:
- Aug 20, 2020, 1:56:08 PM (3 years ago)
- Branches:
- ADT, arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 013b028
- Parents:
- 03a4c73
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/literals.cfa
r03a4c73 rc5b55c4 10 10 // Created On : Sat Sep 9 16:34:38 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Feb 12 08:07:39 201913 // Update Count : 22 412 // Last Modified On : Thu Aug 20 13:51:12 2020 13 // Update Count : 225 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 def __LP64__ // 64-bit processor216 #if defined( __SIZEOF_INT128__ ) 217 217 01234567_l128; 01234567_ul128; 218 218 +01234567_l128; +01234567_ul128; 219 219 -01234567_l128; -01234567_ul128; 220 #endif // __ LP64__220 #endif // __SIZEOF_INT128__ 221 221 222 222 // decimal … … 225 225 -1234567890L8; -1234567890L16; -1234567890l32; -1234567890l64; -1234567890UL8; -1234567890L16U; -1234567890Ul32; -1234567890l64u; 226 226 227 #if def __LP64__ // 64-bit processor227 #if defined( __SIZEOF_INT128__ ) 228 228 1234567890l128; 1234567890l128u; 229 229 +1234567890l128; +1234567890l128u; 230 230 -1234567890l128; -1234567890l128u; 231 #endif // __LP64__ 231 1234567890123456789_L128u; 1234567890123456789_L128u; 232 18446708753438544741_l64u; 18446708753438544741_Ul64; 233 #endif // __SIZEOF_INT128__ 232 234 233 235 // hexadecimal
Note: See TracChangeset
for help on using the changeset viewer.