public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] : [gcc/config/rs600/rs6000.cc][Fix typo] Add parentheses for if statement
@ 2022-09-07 23:20 Akari Takahashi
  2022-09-08 18:53 ` Akari Takahashi
  2022-09-10 15:26 ` Segher Boessenkool
  0 siblings, 2 replies; 4+ messages in thread
From: Akari Takahashi @ 2022-09-07 23:20 UTC (permalink / raw)
  To: gcc-patches; +Cc: takahashiakari

Hello:
I am very interested in GCC and have joined the FSF membership.
I found a small bug in the latest source code, so I report it.

Patch:
[Fix typo]Add parentheses for if statement in line 18117.
gcc/config/rs600/rs6000.cc

Diff:
----------------------------------
diff --git a/gcc/config/rs6000/rs6000.cc b/gcc/config/rs6000/rs6000.cc
index bcf634a146d..a656cb32a47 100644
--- a/gcc/config/rs6000/rs6000.cc
+++ b/gcc/config/rs6000/rs6000.cc
@@ -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;
----------------------------------

Takahashi Akari

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-10 16:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-07 23:20 [PATCH] : [gcc/config/rs600/rs6000.cc][Fix typo] Add parentheses for if statement Akari Takahashi
2022-09-08 18:53 ` Akari Takahashi
2022-09-10 15:26 ` Segher Boessenkool
2022-09-10 16:03   ` Akari Takahashi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).