diff options
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. */ |