diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-07 00:31:01 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-07 00:31:01 +0000 |
commit | ad87de1ece2f52d260b582709751ab9f315ab349 (patch) | |
tree | ec80f8d1e46852ac1ba45aecdcda7201c302ac6f /gcc/print-rtl.c | |
parent | 8098b1a5d828997acb2555106b3edccc0b43b661 (diff) | |
download | gcc-ad87de1ece2f52d260b582709751ab9f315ab349.tar.gz |
Merge from gcc-2.8
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16987 138bc75d-0d04-0410-961f-82ee72b054a4
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 bb4ee0d631a..60405bd8a81 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. */ |