This ports to compilers that optimize the external declaration
'int x = 0;' as if it were 'int x;' to shrink the executable.
+2013-02-12 Paul Eggert <eggert@cs.ucla.edu>
+
+ * pre-crt0.c (data_start): Initialize to 1.
+ This ports to compilers that optimize the external declaration
+ 'int x = 0;' as if it were 'int x;' to shrink the executable.
+
2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
Improve AIX port (Bug#13650).
that make environ an initialized variable. However, we do
need to make sure the label data_start exists anyway. */
-/* Create a label to appear at the beginning of data space. */
-
-int data_start = 0;
+/* Create a label to appear at the beginning of data space.
+ Its value is nonzero so that it cannot be put into bss. */
+int data_start = 1;