aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-write.c
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>1999-10-13 05:37:30 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>1999-10-12 22:37:30 -0700
commitb5edd13335541d6f5628ccfebb2091ce1952b794 (patch)
tree044aa100bb9ee1b877c43d8a39ee37f383240f85 /gcc/java/jcf-write.c
parentcacc154eccf1c9c89d1b734f6b0ec6daf4f21ad8 (diff)
downloadgcc-b5edd13335541d6f5628ccfebb2091ce1952b794.zip
gcc-b5edd13335541d6f5628ccfebb2091ce1952b794.tar.gz
gcc-b5edd13335541d6f5628ccfebb2091ce1952b794.tar.bz2
(RELOCATION_VALUE_1): Fixed integer value from 0 to 1.
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
Diffstat (limited to 'gcc/java/jcf-write.c')
-rw-r--r--gcc/java/jcf-write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-write.c b/gcc/java/jcf-write.c
index 18cba2c..79cf322 100644
--- a/gcc/java/jcf-write.c
+++ b/gcc/java/jcf-write.c
@@ -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. */