Index: tests/nowarn/.expect/printf-sizeof.txt
===================================================================
--- tests/nowarn/.expect/printf-sizeof.txt	(revision d84f2ae33ff967a0dcd536586c44e74523d30775)
+++ tests/nowarn/.expect/printf-sizeof.txt	(revision 3e5fea2e8e80a245642d87ae8b4d88b702fb3e57)
@@ -2,2 +2,3 @@
 1
 10
+0 1 2 3 4 5 6 7 8 9
Index: tests/nowarn/printf-sizeof.cfa
===================================================================
--- tests/nowarn/printf-sizeof.cfa	(revision d84f2ae33ff967a0dcd536586c44e74523d30775)
+++ tests/nowarn/printf-sizeof.cfa	(revision 3e5fea2e8e80a245642d87ae8b4d88b702fb3e57)
@@ -11,12 +11,10 @@
 forall( [N] )
 void mary( array(char, N) & ) {
-    printf( "%zu\n", N );    
-  #if defined TRY_TRAC_269_REMAINDER
-	for ( i; N ) {
+    printf( "%zu\n", N );
+    for ( i; N ) {
         if (i > 0) printf(" ");
-        printf( "%zu", i); // FIX ME: i still getting type long unsigned int on -m32
-	}
+        printf( "%zu", i);
+    }
     printf("\n");
-  #endif
 }
 
