diff options
author | Robert Lipe <robertlipe@usa.net> | 1999-11-07 05:50:38 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1999-11-07 05:50:38 +0000 |
commit | 309ca067d42a680b3d9f8a55c697469f1d92d04a (patch) | |
tree | e9d2ab44111c193e992e8f49f4f1295febb67f45 | |
parent | 092ae4ba981a89701458541198d8c865601a08d8 (diff) | |
download | gcc-309ca067d42a680b3d9f8a55c697469f1d92d04a.zip gcc-309ca067d42a680b3d9f8a55c697469f1d92d04a.tar.gz gcc-309ca067d42a680b3d9f8a55c697469f1d92d04a.tar.bz2 |
global.c (EXECUTE_IF_CONFLICT): Correct quoting typo.
From-SVN: r30438
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/global.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index be5b313..2a0935d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Nov 6 23:48:30 1999 Robert Lipe (robertlipe@usa.net) + + * global.c (EXECUTE_IF_CONFLICT): Correct quoting typo. + Sat Nov 6 17:34:39 1999 Jeffrey A Law (law@cygnus.com) * gcse.c (post_dominators): Kill. diff --git a/gcc/global.c b/gcc/global.c index 6bba568..b36cb1b 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). */ |