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 /gcc/java/decl.c | |
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
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |