aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/svr3.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-01-13 00:17:33 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-13 00:17:33 +0000
commit80cca0e191271070ad7579474f799fd940551b96 (patch)
tree63fabd998fbe20363b0555c19b75c5f872e3a60d /gcc/config/svr3.h
parent07c88314a39910d41df1407040bb20022e815a0d (diff)
downloadgcc-80cca0e191271070ad7579474f799fd940551b96.zip
gcc-80cca0e191271070ad7579474f799fd940551b96.tar.gz
gcc-80cca0e191271070ad7579474f799fd940551b96.tar.bz2
svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
* svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets. * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED. * regclass.c (choose_hard_reg_mode): Likewise. * reload.c (find_valid_class, strict_memory_address_p): Likewise. * reorg.c (optimize_skip): Wrap prototype in macro conditionals. From-SVN: r31364
Diffstat (limited to 'gcc/config/svr3.h')
-rw-r--r--gcc/config/svr3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h
index a32a56b..e97bab7 100644
--- a/gcc/config/svr3.h
+++ b/gcc/config/svr3.h
@@ -61,7 +61,7 @@ Boston, MA 02111-1307, USA.
#undef ASM_FILE_START
#define ASM_FILE_START(FILE) \
do { output_file_directive ((FILE), main_input_filename); \
- if (optimize) ASM_FILE_START_1 (FILE); \
+ if (optimize) { ASM_FILE_START_1 (FILE); } \
} while (0)
/* By default, do nothing: a few machines support .optim, but not most. */