diff options
author | Jeff Law <law@gcc.gnu.org> | 1999-11-05 16:35:47 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-11-05 16:35:47 -0700 |
commit | 6185845d484a27e4ea38de639679f9d77cc948be (patch) | |
tree | 400741bd01f780f825011087034ea6713ed99f6e | |
parent | 7c355bca10d745fdac57df6a07e1c92fbe3ed8af (diff) | |
download | gcc-6185845d484a27e4ea38de639679f9d77cc948be.zip gcc-6185845d484a27e4ea38de639679f9d77cc948be.tar.gz gcc-6185845d484a27e4ea38de639679f9d77cc948be.tar.bz2 |
Fix typo in last change
From-SVN: r30427
-rw-r--r-- | gcc/global.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/global.c b/gcc/global.c index b36cb1b..6bba568 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -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). */ |