* expr.c (expand_load_internal): Fix missing parens in
predicate.
From-SVN: r102504
+2005-07-28 Diego Novillo <dnovillo@redhat.com>
+
+ * expr.c (expand_load_internal): Fix missing parens in
+ predicate.
+
2005-07-28 Andrew Haley <aph@redhat.com>
* expr.c (expand_load_internal): Convert to destination type.
value into it. Then we push this new local on the stack.
Hopefully this all gets optimized out. */
copy = build_decl (VAR_DECL, NULL_TREE, type);
- if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type)
+ if ((INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
&& TREE_TYPE (copy) != TREE_TYPE (var))
var = convert (type, var);
java_add_local_var (copy);