Commit 5d9669fd by Richard Kenner

Minor whitespace edits

From-SVN: r42840
parent 77411c84
...@@ -2869,7 +2869,8 @@ convert_filename (name, do_exe) ...@@ -2869,7 +2869,8 @@ convert_filename (name, do_exe)
return name; return name;
obstack_grow (&obstack, name, len); obstack_grow (&obstack, name, len);
obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX, strlen (TARGET_EXECUTABLE_SUFFIX)); obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
strlen (TARGET_EXECUTABLE_SUFFIX));
name = obstack_finish (&obstack); name = obstack_finish (&obstack);
#endif #endif
......
...@@ -2542,10 +2542,11 @@ eliminate_regs (x, mem_mode, insn) ...@@ -2542,10 +2542,11 @@ eliminate_regs (x, mem_mode, insn)
(reg:m2 R) later, expecting all bits to be preserved. (reg:m2 R) later, expecting all bits to be preserved.
So if the number of words is the same, preserve the So if the number of words is the same, preserve the
subreg so that push_reloads can see it. */ subreg so that push_reloads can see it. */
&& ! ((x_size-1)/UNITS_PER_WORD == (new_size-1)/UNITS_PER_WORD) && ! ((x_size - 1) / UNITS_PER_WORD
== (new_size -1 ) / UNITS_PER_WORD)
#endif #endif
) )
|| (x_size == new_size)) || x_size == new_size)
) )
{ {
int offset = SUBREG_BYTE (x); int offset = SUBREG_BYTE (x);
......
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