diff options
author | David Edelsohn <edelsohn@gnu.org> | 1996-01-31 22:28:24 +0000 |
---|---|---|
committer | David Edelsohn <edelsohn@gnu.org> | 1996-01-31 22:28:24 +0000 |
commit | 03a7e1a5deefa6037c2ec036b7c7e696b79d6733 (patch) | |
tree | 9d3b7318afc07e39763714b32034f5a7a1ac11da | |
parent | 8f802bfb129ea13a4ca4717d96aac798809ff742 (diff) | |
download | gcc-03a7e1a5deefa6037c2ec036b7c7e696b79d6733.zip gcc-03a7e1a5deefa6037c2ec036b7c7e696b79d6733.tar.gz gcc-03a7e1a5deefa6037c2ec036b7c7e696b79d6733.tar.bz2 |
correct parenthesization of TARGET_32BIT
From-SVN: r11146
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 3005672..40c9066 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -3093,7 +3093,7 @@ output_prolog (file, size) ASM_OUTPUT_INTERNAL_LABEL (file, "LCF", rs6000_pic_labelno); fprintf (file, "\tmflr %s\n", reg_names[30]); - asm_fprintf (file, TARGET_32BIT ? "\t{l|lwz}" : "\tld"); + asm_fprintf (file, (TARGET_32BIT) ? "\t{l|lwz}" : "\tld"); fprintf (file, " %s,(", reg_names[0]); ASM_GENERATE_INTERNAL_LABEL (buf, "LCL", rs6000_pic_labelno); assemble_name (file, buf); @@ -3969,7 +3969,7 @@ rs6000_trampoline_size () case ABI_V4: case ABI_AIX_NODESC: - ret = (TARGET_32BIT ? 40 : 48); + ret = (TARGET_32BIT) ? 40 : 48; break; case ABI_NT: |