Changeset ccb776b
- Timestamp:
- Jul 12, 2020, 3:14:06 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 61ce214
- Parents:
- dbe8e31c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
rdbe8e31c rccb776b 10 10 // Created On : Sat May 16 13:17:07 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jul 12 08:15:12202013 // Update Count : 10 3912 // Last Modified On : Sun Jul 12 11:55:44 2020 13 // Update Count : 1040 14 14 // 15 15 … … 186 186 // Cannot be just "0"/"1"; sscanf stops at the suffix, if any; value goes over the wall => always generate 187 187 188 #if __SIZEOF_POINTER__ == 8 // 64-bit mode188 #if __SIZEOF_POINTER__ == 4 // 32-bit mode 189 189 if ( type == 5 ) SemanticError( yylloc, "int128 constant is not supported on this target " + str ); 190 #endif // 64-bit mode190 #endif // 32-bit mode 191 191 192 192 if ( str[0] == '0' ) { // radix character ?
Note: See TracChangeset
for help on using the changeset viewer.