]> gcc.gnu.org Git - gcc.git/commitdiff
(RELOCATION_VALUE_1): Fixed integer value from 0 to 1.
authorAlexandre Petit-Bianco <apbianco@cygnus.com>
Wed, 13 Oct 1999 05:37:30 +0000 (05:37 +0000)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Wed, 13 Oct 1999 05:37:30 +0000 (22:37 -0700)
Tue Oct 12 22:28:10 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>

        * (RELOCATION_VALUE_1): Fixed integer value from 0 to 1.

From-SVN: r29933

gcc/java/ChangeLog
gcc/java/jcf-write.c

index 1e4f75023ccd311fdc8934f2dde11150397c10b8..7a0a03c54f9dbf702fa25a27d27d056ddbb9f796 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct 12 22:28:10 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
+
+       * (RELOCATION_VALUE_1): Fixed integer value from 0 to 1.
+
 1999-10-07  Anthony Green  <green@cygnus.com>
 
        * jcf-write.c (generate_classfile): Use UNSAFE_PUTx in cases
index 18cba2c49c82ecd4b50d7a32acfbd1a344fc4053..79cf322d8592942c13c114d45831d53dfa64bd2c 100644 (file)
@@ -187,7 +187,7 @@ struct jcf_relocation
 };
 
 #define RELOCATION_VALUE_0 ((HOST_WIDE_INT)0)
-#define RELOCATION_VALUE_1 ((HOST_WIDE_INT)0)
+#define RELOCATION_VALUE_1 ((HOST_WIDE_INT)1)
 
 /* State for single catch clause. */
 
This page took 0.08946 seconds and 5 git commands to generate.