mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 20:20:26 +08:00
Minor whitespace edits
From-SVN: r42840
This commit is contained in:
parent
77411c845e
commit
5d9669fd54
@ -2869,7 +2869,8 @@ convert_filename (name, do_exe)
|
||||
return name;
|
||||
|
||||
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);
|
||||
#endif
|
||||
|
||||
|
@ -2542,10 +2542,11 @@ eliminate_regs (x, mem_mode, insn)
|
||||
(reg:m2 R) later, expecting all bits to be preserved.
|
||||
So if the number of words is the same, preserve the
|
||||
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
|
||||
)
|
||||
|| (x_size == new_size))
|
||||
|| x_size == new_size)
|
||||
)
|
||||
{
|
||||
int offset = SUBREG_BYTE (x);
|
||||
|
Loading…
Reference in New Issue
Block a user