diff options
author | Arati Dikey <aratid@kpit.com> | 2002-09-03 17:25:02 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2002-09-03 11:25:02 -0600 |
commit | ff970081c59260b09d169bea3d51e6adc45aa552 (patch) | |
tree | 3a9c5eac942a87cc1172c48b3e750c6a702ba2bb /gcc/config/h8300 | |
parent | b50d021d86eb6ab00b0d4c69cb39cd784733f77e (diff) | |
download | gcc-ff970081c59260b09d169bea3d51e6adc45aa552.tar.gz |
* h8300.c (asm_file_start): Corrected optimization comment.
From-SVN: r56761
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 19520db4333..a287ab127f8 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -505,7 +505,10 @@ asm_file_start (file) { fprintf (file, ";\tGCC For the Hitachi H8/300\n"); fprintf (file, ";\tBy Hitachi America Ltd and Cygnus Support\n"); - if (optimize) + + if (optimize_size) + fprintf (file, "; -Os\n") + else if (optimize) fprintf (file, "; -O%d\n", optimize); if (TARGET_H8300H) fprintf (file, "\n\t.h8300h\n"); |