aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/decl.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2002-11-02 21:29:36 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-11-02 21:29:36 +0000
commitfafe87d07d4d685f3c0f6e8d817f0c5ec530abc5 (patch)
tree9eab0f2c90e0eafd8c918a932688d892ebc2f013 /gcc/java/decl.c
parent77a106a531a92278c5a28b8ec8c373621d302185 (diff)
downloadgcc-fafe87d07d4d685f3c0f6e8d817f0c5ec530abc5.zip
gcc-fafe87d07d4d685f3c0f6e8d817f0c5ec530abc5.tar.gz
gcc-fafe87d07d4d685f3c0f6e8d817f0c5ec530abc5.tar.bz2
Reverted erroneous checkin
From-SVN: r58756
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r--gcc/java/decl.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c
index 172a9fd..4b06aaf 100644
--- a/gcc/java/decl.c
+++ b/gcc/java/decl.c
@@ -1,6 +1,6 @@
/* Process declarations and variables for the GNU compiler for the
Java(TM) language.
- Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
+ Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -454,14 +454,6 @@ java_init_decl_processing ()
integer_four_node = build_int_2 (4, 0);
integer_minus_one_node = build_int_2 (-1, -1);
- /* A few values used for range checking in the lexer. */
- decimal_int_max = build_int_2 (0x80000000, 0);
- TREE_TYPE (decimal_int_max) = unsigned_int_type_node;
- decimal_long_max = (HOST_BITS_PER_WIDE_INT == 32
- ? build_int_2 (0, 0x80000000)
- : build_int_2 (0x8000000000000000, 0));
- TREE_TYPE (decimal_long_max) = unsigned_long_type_node;
-
size_zero_node = size_int (0);
size_one_node = size_int (1);
bitsize_zero_node = bitsize_int (0);