Commit ff539210 by Ben Elliston Committed by Ben Elliston

* varasm.c (initializer_constant_valid_p): Fix comment typo.

From-SVN: r128117
parent ff90b220
2007-09-05 Ben Elliston <bje@au.ibm.com> 2007-09-05 Ben Elliston <bje@au.ibm.com>
* varasm.c (initializer_constant_valid_p): Fix comment typo.
2007-09-05 Ben Elliston <bje@au.ibm.com>
* config/rs6000/ppu_intrinsics.h (__ldarx): Use `Z' constraint, * config/rs6000/ppu_intrinsics.h (__ldarx): Use `Z' constraint,
not `m' for *ptrp. not `m' for *ptrp.
(__stdcx): Make asm volatile. (__stdcx): Make asm volatile.
......
...@@ -4190,7 +4190,7 @@ initializer_constant_valid_p (tree value, tree endtype) ...@@ -4190,7 +4190,7 @@ initializer_constant_valid_p (tree value, tree endtype)
endtype); endtype);
tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1), tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
endtype); endtype);
/* If either term is absolute, use the other terms relocation. */ /* If either term is absolute, use the other term's relocation. */
if (valid0 == null_pointer_node) if (valid0 == null_pointer_node)
return valid1; return valid1;
if (valid1 == null_pointer_node) if (valid1 == null_pointer_node)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment