global.c (EXECUTE_IF_CONFLICT): Undo Robert's change.
authorJeffrey A Law <law@cygnus.com>
Sun, 7 Nov 1999 10:00:56 +0000 (10:00 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 7 Nov 1999 10:00:56 +0000 (03:00 -0700)
        * global.c (EXECUTE_IF_CONFLICT): Undo Robert's change.
        (EXECUTE_IF_SET_IN_ALLOCNO_SET): Put curleys around CODE in
        macro expansion.

From-SVN: r30441

gcc/ChangeLog
gcc/global.c

index 2a0935d3af0488828c2ad3fffa253354587cb1e6..366a4eceafcf2f21bf9ce88b7416627cc33d4cbd 100644 (file)
@@ -1,3 +1,9 @@
+Sun Nov  7 02:58:48 1999  Jeffrey A Law  (law@cygnus.com)
+
+       * global.c (EXECUTE_IF_CONFLICT): Undo Robert's change.
+       (EXECUTE_IF_SET_IN_ALLOCNO_SET): Put curleys around CODE in
+       macro expansion.
+
 Sat Nov  6 23:48:30 1999  Robert Lipe  (robertlipe@usa.net)
 
        * global.c (EXECUTE_IF_CONFLICT): Correct quoting typo.
index b36cb1b97ab934cf6cff91ed30712c03a66fc721..4edacf83a019fa1ff25b1edb37c5aae921553014 100644 (file)
@@ -149,7 +149,7 @@ do {                                                                        \
       for ((ALLOCNO) = allocno_; word_; word_ >>= 1, (ALLOCNO)++)      \
        {                                                               \
          if (word_ & 1)                                                \
-           CODE;                                                       \
+           {CODE;}                                                     \
        }                                                               \
     }                                                                  \
 } while (0)
@@ -159,7 +159,7 @@ do {                                                                        \
    mirror_conflicts has been run.  */
 #define EXECUTE_IF_CONFLICT(IN_ALLOCNO, OUT_ALLOCNO, CODE)\
   EXECUTE_IF_SET_IN_ALLOCNO_SET (conflicts + (IN_ALLOCNO) * allocno_row_words,\
-                                OUT_ALLOCNO, CODE)
+                                OUT_ALLOCNO, (CODE))
 
 /* Set of hard regs currently live (during scan of all insns).  */