diff options
author | Andreas Jaeger <aj@suse.de> | 2002-05-26 10:03:42 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-05-26 10:03:42 +0200 |
commit | 9b89393b82fec487e05a003120f3c9197ca0ee4f (patch) | |
tree | 23f711983787e76b571544c28276657316dbba7d /gcc | |
parent | cc48aa3f93aaa7bc84438d2698fb9d66fa3978e7 (diff) | |
download | gcc-9b89393b82fec487e05a003120f3c9197ca0ee4f.zip gcc-9b89393b82fec487e05a003120f3c9197ca0ee4f.tar.gz gcc-9b89393b82fec487e05a003120f3c9197ca0ee4f.tar.bz2 |
combine.c (combine_instructions): Do not indent #if for traditional C.
* combine.c (combine_instructions): Do not indent #if for
traditional C.
From-SVN: r53891
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/combine.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 34ab44d..541776e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-26 Andreas Jaeger <aj@suse.de> + + * combine.c (combine_instructions): Do not indent #if for + traditional C. + 2002-05-25 Richard Henderson <rth@redhat.com> * c-pragma.c (apply_pragma_weak): Convert value identifier to diff --git a/gcc/combine.c b/gcc/combine.c index e1581da..49ba24c 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -660,7 +660,7 @@ combine_instructions (f, nregs) goto retry; } - #ifdef HAVE_cc0 +#ifdef HAVE_cc0 /* Try to combine a jump insn that uses CC0 with a preceding insn that sets CC0, and maybe with its logical predecessor as well. @@ -718,7 +718,7 @@ combine_instructions (f, nregs) && (next = try_combine (insn, XEXP (links, 0), prev, &new_direct_jump_p)) != 0) goto retry; - #endif +#endif /* Try combining an insn with two different insns whose results it uses. */ |