diff options
author | Jeff Law <law@gcc.gnu.org> | 1997-12-06 17:31:01 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-12-06 17:31:01 -0700 |
commit | 956d69504d77d301015532d2f0564213f0efc706 (patch) | |
tree | ec80f8d1e46852ac1ba45aecdcda7201c302ac6f /gcc/print-rtl.c | |
parent | 27b6b158c29b45fd80c2f104d5da1f4bc818d7ab (diff) | |
download | gcc-956d69504d77d301015532d2f0564213f0efc706.zip gcc-956d69504d77d301015532d2f0564213f0efc706.tar.gz gcc-956d69504d77d301015532d2f0564213f0efc706.tar.bz2 |
Merge from gcc-2.8
From-SVN: r16987
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index bb4ee0d..60405bd 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -232,10 +232,15 @@ print_inline_rtx (outf, x, ind) FILE *outf; rtx x; { + int oldsaw = sawclose; + int oldindent = indent; + sawclose = 0; indent = ind; outfile = outf; print_rtx (x); + sawclose = oldsaw; + indent = oldindent; } /* Call this function from the debugger to see what X looks like. */ |