OSDN Git Service

8
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Oct 1998 18:07:49 +0000 (18:07 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Oct 1998 18:07:49 +0000 (18:07 +0000)
* reload.c (loc_mentioned_in_p): Add missing braces to bind
else to correct if.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23205 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/reload.c

index a60841f..a7dba55 100644 (file)
@@ -1586,8 +1586,10 @@ loc_mentioned_in_p (loc, in)
       if (loc == &XEXP (in, i))
        return 1;
       if (fmt[i] == 'e')
-       if (loc_mentioned_in_p (loc, XEXP (in, i)))
-         return 1;
+        {
+         if (loc_mentioned_in_p (loc, XEXP (in, i)))
+           return 1;
+        }
       else if (fmt[i] == 'E')
        for (j = XVECLEN (in, i) - 1; i >= 0; i--)
          if (loc_mentioned_in_p (loc, XVECEXP (in, i, j)))