Commit 6ebd2ef4 by Alexandre Oliva Committed by Alexandre Oliva

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
parent 74828682
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> 2003-01-26 Michael Hayes <mph@paradise.net.nz>
* df.h: Update comments, tidy formatting. * df.h: Update comments, tidy formatting.
......
/* Print RTL for GNU C Compiler. /* 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. Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -510,6 +510,7 @@ print_rtx (in_rtx) ...@@ -510,6 +510,7 @@ print_rtx (in_rtx)
switch (GET_CODE (in_rtx)) switch (GET_CODE (in_rtx))
{ {
#ifndef GENERATOR_FILE
case MEM: case MEM:
fputs (" [", outfile); fputs (" [", outfile);
fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx)); fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx));
...@@ -537,7 +538,6 @@ print_rtx (in_rtx) ...@@ -537,7 +538,6 @@ print_rtx (in_rtx)
fputc (']', outfile); fputc (']', outfile);
break; break;
#ifndef GENERATOR_FILE
case CONST_DOUBLE: case CONST_DOUBLE:
if (FLOAT_MODE_P (GET_MODE (in_rtx))) if (FLOAT_MODE_P (GET_MODE (in_rtx)))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment