Index: tests/.expect/alloc-ERROR.txt
===================================================================
--- tests/.expect/alloc-ERROR.txt	(revision d6ad99ef0767ccc9b7f111ddeef69eaa4a2e66a3)
+++ tests/.expect/alloc-ERROR.txt	(revision 9d264e18fc76fe0f9f57293b506d3984d46e5d7d)
@@ -1,3 +1,3 @@
-alloc.cfa:361:1 error: No reasonable alternatives for expression Applying untyped:
+alloc.cfa:382:1 error: No reasonable alternatives for expression Applying untyped:
   Name: ?=?
 ...to:
@@ -19,5 +19,5 @@
 
 
-alloc.cfa:362:1 error: No reasonable alternatives for expression Applying untyped:
+alloc.cfa:383:1 error: No reasonable alternatives for expression Applying untyped:
   Name: ?=?
 ...to:
@@ -30,5 +30,5 @@
 
 
-alloc.cfa:363:1 error: No reasonable alternatives for expression Applying untyped:
+alloc.cfa:384:1 error: No reasonable alternatives for expression Applying untyped:
   Name: ?=?
 ...to:
Index: tests/alloc.cfa
===================================================================
--- tests/alloc.cfa	(revision d6ad99ef0767ccc9b7f111ddeef69eaa4a2e66a3)
+++ tests/alloc.cfa	(revision 9d264e18fc76fe0f9f57293b506d3984d46e5d7d)
@@ -10,6 +10,6 @@
 // Created On       : Wed Feb  3 07:56:22 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Oct  9 23:03:11 2020
-// Update Count     : 431
+// Last Modified On : Thu Nov 12 10:02:18 2020
+// Update Count     : 432
 //
 
@@ -375,5 +375,5 @@
 	dp = alloc(5.0`fill); // just for testing multiple free
 	assert(*dp == 5.0);
-	free( ip, dp );
+	free( ip, dp, 0p );
 
 #ifdef ERR1
Index: tests/malloc.cfa
===================================================================
--- tests/malloc.cfa	(revision d6ad99ef0767ccc9b7f111ddeef69eaa4a2e66a3)
+++ tests/malloc.cfa	(revision 9d264e18fc76fe0f9f57293b506d3984d46e5d7d)
@@ -319,5 +319,5 @@
 	free(ip);
 
-	free( (void*) 0p ); // sanity check
+	free( (void *) 0p ); // sanity check
 	free( NULL ); // sanity check
 
@@ -605,2 +605,7 @@
 	return 0;
 }
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa malloc.cfa" //
+// End: //
Index: tests/manipulatorsOutput3.cfa
===================================================================
--- tests/manipulatorsOutput3.cfa	(revision d6ad99ef0767ccc9b7f111ddeef69eaa4a2e66a3)
+++ tests/manipulatorsOutput3.cfa	(revision 9d264e18fc76fe0f9f57293b506d3984d46e5d7d)
@@ -156,7 +156,4 @@
 	sout | nl;
 
-	ui128 = 0x7fffffffffffffff;
-	ui128 <<= 64;
-	ui128 += 0xffffffffffffffff;
 	sout | left( wd( 160, i128 ) );
 	sout | left( sign( wd( 0, i128 ) ) );
@@ -177,7 +174,7 @@
 	sout | left( wd( 160, bin( i128 ) ) );
 	sout | left( sign( wd( 160, i128 ) ) );
-	sout | left( wd( 160, upcase(hex( i128 )) ) );
-	sout | left( wd( 160, upcase(oct( i128 ) )) );
-	sout | left( wd( 160, upcase(bin( i128 )) ) );
+	sout | left( wd( 160, upcase( hex( i128 ) ) ) );
+	sout | left( wd( 160, upcase( oct( i128 ) ) ) );
+	sout | left( wd( 160, upcase( bin( i128 ) ) ) );
 
 	x = 1234;
@@ -316,5 +313,4 @@
 	}
 
-
 	// int128 constants (and printing)
 	int128 v = 0xffff_ffffffff_ffffffff_L128 + 0xffffffff_ffffffff_ffffffff_ffffffff_L128;
