aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2003-01-26 08:59:54 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2003-01-26 08:59:54 +0000
commit6ebd2ef4423713984ac1b4fc42adce7114e75646 (patch)
tree0816e7c6016ed6f6aeb5be55813bfb3e4e8b0b63 /gcc
parent74828682c7ad2a365bb92249e678f7ff1642ef7c (diff)
downloadgcc-6ebd2ef4423713984ac1b4fc42adce7114e75646.zip
gcc-6ebd2ef4423713984ac1b4fc42adce7114e75646.tar.gz
gcc-6ebd2ef4423713984ac1b4fc42adce7114e75646.tar.bz2
print-rtl.c (print_rtx): Don't print MEM details in GENERATOR_FILEs.
* print-rtl.c (print_rtx): Don't print MEM details in GENERATOR_FILEs. From-SVN: r61822
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/print-rtl.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9a827a4..53dae3e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-26 Alexandre Oliva <aoliva@redhat.com>
+
+ * print-rtl.c (print_rtx): Don't print MEM details in
+ GENERATOR_FILEs.
+
2003-01-26 Michael Hayes <mph@paradise.net.nz>
* df.h: Update comments, tidy formatting.
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index 6930e76..26259e1 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -1,5 +1,5 @@
/* Print RTL for GNU C Compiler.
- Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999, 2000
+ Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999, 2000, 2002, 2003
Free Software Foundation, Inc.
This file is part of GCC.
@@ -510,6 +510,7 @@ print_rtx (in_rtx)
switch (GET_CODE (in_rtx))
{
+#ifndef GENERATOR_FILE
case MEM:
fputs (" [", outfile);
fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx));
@@ -537,7 +538,6 @@ print_rtx (in_rtx)
fputc (']', outfile);
break;
-#ifndef GENERATOR_FILE
case CONST_DOUBLE:
if (FLOAT_MODE_P (GET_MODE (in_rtx)))
{