aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-03-30 22:54:10 +0000
committerRichard Stallman <rms@gnu.org>1992-03-30 22:54:10 +0000
commit58e54c449bcd843cde0e989ef386283e708a88c9 (patch)
tree5b596c0b8d4bc0b86bed14870d0d064bf418b62f
parentd68c507dffe8657a9703d6396a573047b0b7066b (diff)
downloadgcc-58e54c449bcd843cde0e989ef386283e708a88c9.zip
gcc-58e54c449bcd843cde0e989ef386283e708a88c9.tar.gz
gcc-58e54c449bcd843cde0e989ef386283e708a88c9.tar.bz2
*** empty log message ***
From-SVN: r639
-rw-r--r--gcc/rtl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index aa7171b..7469539 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -509,8 +509,8 @@ extern char *note_insn_name[];
/* Define a macro to look for REG_INC notes,
but save time on machines where they never exist. */
-#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \
- || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
+/* Don't continue this line--convex cc version 4.1 would lose. */
+#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
#define FIND_REG_INC_NOTE(insn, reg) (find_reg_note ((insn), REG_INC, (reg)))
#else
#define FIND_REG_INC_NOTE(insn, reg) 0
@@ -519,8 +519,8 @@ extern char *note_insn_name[];
/* Indicate whether the machine has any sort of auto increment addressing.
If not, we can avoid checking for REG_INC notes. */
-#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \
- || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
+/* Don't continue this line--convex cc version 4.1 would lose. */
+#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
#define AUTO_INC_DEC
#endif