diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 382a4e97396..e989a95b1f8 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -805,7 +805,9 @@ assemble_string (p, size) if (output_bytecode) BC_OUTPUT_ASCII (asm_out_file, p, thissize); else - ASM_OUTPUT_ASCII (asm_out_file, p, thissize); + { + ASM_OUTPUT_ASCII (asm_out_file, p, thissize); + } pos += thissize; p += thissize; |