diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 2000-02-22 09:12:48 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-02-22 01:12:48 -0800 |
commit | 99803cd4cc24c236f177c15da793366841bb5434 (patch) | |
tree | 6256a14cd0fa175285342940cd13a966103c3889 | |
parent | b25b67d3cc447eefead4f5ea7890fdc8a8c595fc (diff) | |
download | gcc-99803cd4cc24c236f177c15da793366841bb5434.zip gcc-99803cd4cc24c236f177c15da793366841bb5434.tar.gz gcc-99803cd4cc24c236f177c15da793366841bb5434.tar.bz2 |
parse.y (init_decl_processing): `_Jv_IsInstanceOf' returned value type set to `boolean_type_node'.
2000-02-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (init_decl_processing): `_Jv_IsInstanceOf' returned
value type set to `boolean_type_node'.
From-SVN: r32104
-rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/java/decl.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 8a6fdef..e682ced 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2000-02-22 Alexandre Petit-Bianco <apbianco@cygnus.com> + + * parse.y (init_decl_processing): `_Jv_IsInstanceOf' returned + value type set to `boolean_type_node'. + Mon Jan 18 14:30:09 2000 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de> * jcf-dump.c (main): Test for correct condition after diff --git a/gcc/java/decl.c b/gcc/java/decl.c index b5416e4..711f9cb 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -804,7 +804,7 @@ init_decl_processing () tree_cons (NULL_TREE, class_ptr_type, endlink)); soft_instanceof_node = builtin_function ("_Jv_IsInstanceOf", - build_function_type (promoted_boolean_type_node, t), + build_function_type (boolean_type_node, t), 0, NOT_BUILT_IN, NULL_PTR); t = tree_cons (NULL_TREE, object_ptr_type_node, tree_cons (NULL_TREE, object_ptr_type_node, endlink)); |