summaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-07 10:00:56 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-07 10:00:56 +0000
commitc74159a45bc255e4045ab68fee7fc885bafcd957 (patch)
treedc2688ea9e52ead6edf4c2d810be0d7e4197cfe7 /gcc/global.c
parent0d3169b96b94fa6a908ac2084f6658b32f950ce7 (diff)
downloadgcc-c74159a45bc255e4045ab68fee7fc885bafcd957.tar.gz
* global.c (EXECUTE_IF_CONFLICT): Undo Robert's change.
(EXECUTE_IF_SET_IN_ALLOCNO_SET): Put curleys around CODE in macro expansion. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30441 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/global.c')
-rw-r--r--gcc/global.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/global.c b/gcc/global.c
index b36cb1b97ab..4edacf83a01 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -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). */