Index: src/Parser/ExpressionNode.cc
===================================================================
--- src/Parser/ExpressionNode.cc	(revision d34575bd6570f3b8d33ebcfeefd4138a053de439)
+++ src/Parser/ExpressionNode.cc	(revision dbe8e31c64cb8baf7c809362de907d2cc13b8381)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 13:17:07 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jul 11 16:44:49 2020
-// Update Count     : 1034
+// Last Modified On : Sun Jul 12 08:15:12 2020
+// Update Count     : 1039
 //
 
@@ -185,4 +185,8 @@
 
 	// Cannot be just "0"/"1"; sscanf stops at the suffix, if any; value goes over the wall => always generate
+
+#if __SIZEOF_POINTER__ == 8								// 64-bit mode
+	if ( type == 5 ) SemanticError( yylloc, "int128 constant is not supported on this target " + str );
+#endif // 64-bit mode
 	
 	if ( str[0] == '0' ) {								// radix character ?
@@ -215,4 +219,5 @@
 			if ( type < 5 ) {							// not L128 ?
 				sscanf( (char *)str.c_str(), "%llo", &v );
+#if __SIZEOF_POINTER__ == 8								// 64-bit mode
 			} else {									// octal int128 constant
 				unsigned int len = str.length();
@@ -240,4 +245,5 @@
 					str = buf;
 				} // if
+#endif // 64-bit mode
 			} // if
 			//printf( "%#llo %llu\n", v, v );
@@ -246,4 +252,5 @@
 		if ( type < 5 ) {								// not L128 ?
 			sscanf( (char *)str.c_str(), "%llu", &v );
+#if __SIZEOF_POINTER__ == 8								// 64-bit mode
 		} else {										// decimal int128 constant
 			#define P10_UINT64 10'000'000'000'000'000'000ULL // 19 zeroes
@@ -273,4 +280,5 @@
 				str = buf;
 			} // if
+#endif // 64-bit mode
 		} // if
 		//printf( "%llu\n", v );
