diff options
author | J"orn Rennecke <amylaar@cygnus.co.uk> | 1998-03-26 10:17:32 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 1998-03-26 10:17:32 +0000 |
commit | 04d02ece5ec6ea08f60dba1efa289b8c358b3e5b (patch) | |
tree | 9ce21ba6f134ff6dcad3898993865d652ff47c1d /gcc/config/sh | |
parent | 6f28d3e98257593850baca079e60a59eae47bc9f (diff) | |
download | gcc-04d02ece5ec6ea08f60dba1efa289b8c358b3e5b.zip gcc-04d02ece5ec6ea08f60dba1efa289b8c358b3e5b.tar.gz gcc-04d02ece5ec6ea08f60dba1efa289b8c358b3e5b.tar.bz2 |
* sh.h (OPTIMIZATION_OPTIONS): Define.
From-SVN: r18837
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index e0b05b6..1842574 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -160,6 +160,12 @@ extern int target_flags; #define PRESERVE_DEATH_INFO_REGNO_P(regno) (TARGET_RELAX || optimize) +#define OPTIMIZATION_OPTIONS(LEVEL,SIZE) \ +do { \ + if (SIZE) \ + target_flags |= SPACE_BIT; \ +} while (0) + #define ASSEMBLER_DIALECT 0 /* will allow to distinguish b[tf].s and b[tf]/s . */ #define OVERRIDE_OPTIONS \ do { \ |