Index: tests/literals.cfa
===================================================================
--- tests/literals.cfa	(revision 03a4c732c41cec6ae90263ab98f94f3c2ea795c4)
+++ tests/literals.cfa	(revision 013b028c0a33a04da0b707cac29d64d448b9e545)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  9 16:34:38 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Feb 12 08:07:39 2019
-// Update Count     : 224
+// Last Modified On : Thu Aug 20 13:51:12 2020
+// Update Count     : 225
 //
 
@@ -214,9 +214,9 @@
 	-01234567_l8;  -01234567_l16;  -01234567_l32;  -01234567_l64;  -01234567_l8u;  -01234567_ul16;  -01234567_l32u;  -01234567_ul64;
 
-#ifdef __LP64__ // 64-bit processor
+#if defined( __SIZEOF_INT128__ )
 	01234567_l128;   01234567_ul128;
 	+01234567_l128;  +01234567_ul128;
 	-01234567_l128;  -01234567_ul128;
-#endif // __LP64__
+#endif // __SIZEOF_INT128__
 
 	// decimal
@@ -225,9 +225,11 @@
 	-1234567890L8;  -1234567890L16;  -1234567890l32;  -1234567890l64;  -1234567890UL8;  -1234567890L16U;  -1234567890Ul32;  -1234567890l64u;
 
-#ifdef __LP64__ // 64-bit processor
+#if defined( __SIZEOF_INT128__ )
 	1234567890l128;   1234567890l128u;
 	+1234567890l128;  +1234567890l128u;
 	-1234567890l128;  -1234567890l128u;
-#endif // __LP64__
+    1234567890123456789_L128u; 1234567890123456789_L128u;
+	18446708753438544741_l64u; 18446708753438544741_Ul64;
+#endif // __SIZEOF_INT128__
 
 	// hexadecimal
