Index: tests/.expect/gccExtensions.x64.txt
===================================================================
--- tests/.expect/gccExtensions.x64.txt	(revision 3a55d9fcb4c52f6b0227df9fc8a42cccc834cebd)
+++ tests/.expect/gccExtensions.x64.txt	(revision 298ab3dfe055abd231901ff85de7e7c829170ba3)
@@ -291,9 +291,26 @@
     signed int _X2m2A0A0i_2[((unsigned long int )10)][((unsigned long int )10)];
     signed int _X2m3A0A0i_2[((unsigned long int )10)][((unsigned long int )10)];
-    {
-        ((void)(_X12_retval_maini_1=0) /* ?{} */);
-    }
-
-    return _X12_retval_maini_1;
+    void _X1fFv_n__2(__int128 _X1in_2);
+    void _X1fFv_o__2(unsigned __int128 __anonymous_object0);
+    __int128 _X2i0n_2;
+    {
+        ((void)_X1fFv_n__2(_X2i0n_2));
+    }
+
+    unsigned __int128 _X2i1o_2;
+    {
+        ((void)_X1fFv_o__2(_X2i1o_2));
+    }
+
+    __int128 _X2i2n_2;
+    {
+        ((void)_X1fFv_n__2(_X2i2n_2));
+    }
+
+    unsigned __int128 _X2i3o_2;
+    {
+        ((void)_X1fFv_o__2(_X2i3o_2));
+    }
+
     {
         ((void)(_X12_retval_maini_1=0) /* ?{} */);
Index: tests/gccExtensions.cfa
===================================================================
--- tests/gccExtensions.cfa	(revision 3a55d9fcb4c52f6b0227df9fc8a42cccc834cebd)
+++ tests/gccExtensions.cfa	(revision 298ab3dfe055abd231901ff85de7e7c829170ba3)
@@ -10,6 +10,6 @@
 // Created On       : Sun Aug 14 17:28:17 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Nov  6 17:54:20 2018
-// Update Count     : 11
+// Last Modified On : Mon Aug  5 07:47:11 2019
+// Update Count     : 12
 // 
 
@@ -115,5 +115,16 @@
 //	int ( __attribute(()) m4 [10] )[10];
 
-	return 0;
+
+	void f( __int128 i );
+	void f( __uint128_t );
+
+	__int128 i0;
+	f( i0 );
+	unsigned __int128 i1;
+	f( i1 );
+	__int128_t i2;
+	f( i2 );
+	__uint128_t i3;
+	f( i3 );
 }
 
