rs6000: Make an "if" statement more regular
As Akari noticed, we have an unusual "if" statement without parentheses around the condition. The condition is a macro that expands to something with parentheses in the right spot, but, let's make the code a little less surprising :-) 2022-09-10 Akari Takahashi <akaritakahashioss@gmail.com> Segher Boessenkool <segher@kernel.crashing.org> * config/rs6000/rs6000.cc (get_memref_parts): Regularize some code.
This commit is contained in:
parent
7d37c7f67c
commit
16d752a514
1 changed files with 1 additions and 1 deletions
|
@ -18114,7 +18114,7 @@ get_memref_parts (rtx mem, rtx *base, HOST_WIDE_INT *offset,
|
|||
HOST_WIDE_INT *size)
|
||||
{
|
||||
rtx addr_rtx;
|
||||
if MEM_SIZE_KNOWN_P (mem)
|
||||
if (MEM_SIZE_KNOWN_P (mem))
|
||||
*size = MEM_SIZE (mem);
|
||||
else
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue