aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-09-27 00:51:55 +0000
committerRichard Stallman <rms@gnu.org>1993-09-27 00:51:55 +0000
commitd5896f202168b4f1787e815882259de7557fabde (patch)
treeeb5f16fda9c2229420dedfbdbbb0262e581e45a1 /gcc
parenta773f6c7e6e74a1fac033016550dbbcba0ad8133 (diff)
downloadgcc-d5896f202168b4f1787e815882259de7557fabde.zip
gcc-d5896f202168b4f1787e815882259de7557fabde.tar.gz
gcc-d5896f202168b4f1787e815882259de7557fabde.tar.bz2
(assemble_string): Put braces around ASM_OUTPUT_ASCII.
From-SVN: r5479
Diffstat (limited to 'gcc')
-rw-r--r--gcc/varasm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 382a4e9..e989a95 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;