This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Patch: gcj and redundant null pointer check
- From: Alexandre Petit-Bianco <apbianco at cygnus dot com>
- To: tromey at redhat dot com
- Cc: Gcc Patch List <gcc-patches at gcc dot gnu dot org>, Java Patch List <java-patches at gcc dot gnu dot org>
- Date: Wed, 27 Mar 2002 10:10:53 -0800 (PST)
- Subject: Re: Patch: gcj and redundant null pointer check
- References: <87ofh9rhb1.fsf@creche.redhat.com>
- Reply-to: apbianco at redhat dot com
Tom Tromey writes:
> Ok?
Yes. Just a style comment. This:
> + check
> + = java_check_reference (save_arg,
> + DECL_NAME (method) != init_identifier_node);
can be written:
> + check = java_check_reference (save_arg, ! DECL_INIT_P (method));
Thanks,
./A