diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-13 00:17:33 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-13 00:17:33 +0000 |
commit | 454a121266931aba549619ab0a3a568c9ddba5c3 (patch) | |
tree | 63fabd998fbe20363b0555c19b75c5f872e3a60d /gcc/config/svr3.h | |
parent | 3d411d7309d84f4f5e2f73ed9ebf3b79469e10bd (diff) | |
download | gcc-454a121266931aba549619ab0a3a568c9ddba5c3.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31364 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/svr3.h')
-rw-r--r-- | gcc/config/svr3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h index a32a56b0894..e97bab7ac39 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. */ |