From 03a7e1a5deefa6037c2ec036b7c7e696b79d6733 Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 31 Jan 1996 22:28:24 +0000 Subject: [PATCH] correct parenthesization of TARGET_32BIT From-SVN: r11146 --- gcc/config/rs6000/rs6000.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 3005672b8f2..40c90661fad 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: -- 2.30.2