diff options
author | Doug Evans <dje@gnu.org> | 1996-01-11 17:22:46 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-01-11 17:22:46 +0000 |
commit | 43074b10fbb7d74771cbc3ba0bba96aaf1eba453 (patch) | |
tree | 2de97571a1ded54bb5a1801e64ccde2236daac05 | |
parent | 2e2b138be7ff9b2f910a6bed5935c7904ebeb7d4 (diff) | |
download | gcc-43074b10fbb7d74771cbc3ba0bba96aaf1eba453.zip gcc-43074b10fbb7d74771cbc3ba0bba96aaf1eba453.tar.gz gcc-43074b10fbb7d74771cbc3ba0bba96aaf1eba453.tar.bz2 |
(OVERRIDE_OPTIONS): Clean up comment.
From-SVN: r10964
-rw-r--r-- | gcc/config/h8300/h8300.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index a22a984..89414e8 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -99,17 +99,12 @@ extern int target_flags; {"exp",8192}, \ { "", TARGET_DEFAULT}} -/* Merge the meaning of -mdouble64 and -fshort-double. - ??? Unfortunately, there's no way to detect -fno-short-double - (our default is the opposite of theirs). - Also do other things that must be done once at start up. */ +/* Do things that must be done once at start up. */ #define OVERRIDE_OPTIONS \ -{ \ - /*extern int flag_short_double; \ - flag_short_double = TARGET_DOUBLE32;*/ \ +do { \ h8300_init_once (); \ -} +} while (0) /* Default target_flags if no switches specified. */ |