diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-20 21:07:59 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-20 21:07:59 -0400 |
commit | 8f87939b502d1c74f70a2f656eba417ea96ddfa8 (patch) | |
tree | 884f5ff38d06ef0277a683cdfc9e9191e37ff597 | |
parent | 74dad6cee46f115970139ff61e2efc86bc32b961 (diff) | |
download | gcc-8f87939b502d1c74f70a2f656eba417ea96ddfa8.zip gcc-8f87939b502d1c74f70a2f656eba417ea96ddfa8.tar.gz gcc-8f87939b502d1c74f70a2f656eba417ea96ddfa8.tar.bz2 |
(MASK_CPU_EV5): New macro.
From-SVN: r14509
-rw-r--r-- | gcc/config/alpha/alpha.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 2b6976a..8a7f52a 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -173,6 +173,10 @@ extern enum alpha_fp_trap_mode alpha_fptm; #define MASK_BYTE_OPS 1024 #define TARGET_BYTE_OPS (target_flags & MASK_BYTE_OPS) +/* This means that the processor is an EV5 or EV56. This is defined only + in TARGET_CPU_DEFAULT. */ +#define MASK_CPU_EV5 2048 + /* Macro to define tables used to set the flags. This is a list in braces of pairs in braces, each pair being { "NAME", VALUE } |