diff options
author | Steve Ellcey <sje@cup.hp.com> | 2004-02-03 16:39:42 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2004-02-03 16:39:42 +0000 |
commit | 0263e6bf3c7ccd1cccbc18b5e6cef273878d9e7f (patch) | |
tree | afbe7200054ab57fc527973e5f20b7b9c25924a2 | |
parent | 8696d927c03a0551bfdc7ab8acc756d31d468592 (diff) | |
download | gcc-0263e6bf3c7ccd1cccbc18b5e6cef273878d9e7f.zip gcc-0263e6bf3c7ccd1cccbc18b5e6cef273878d9e7f.tar.gz gcc-0263e6bf3c7ccd1cccbc18b5e6cef273878d9e7f.tar.bz2 |
ia64.h (MASK_INLINE_INT_DIV_LAT): Change value.
* config/ia64/ia64.h (MASK_INLINE_INT_DIV_LAT): Change value.
(MASK_INLINE_INT_DIV_THR): Ditto.
(MASK_INLINE_SQRT_LAT): Ditto.
(MASK_INLINE_SQRT_THR): Ditto.
(MASK_DWARF2_ASM): Ditto.
(MASK_EARLY_STOP_BITS): Ditto.
From-SVN: r77175
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.h | 12 |
2 files changed, 15 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fedcaad..212e60f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2004-02-03 Steve Ellcey <sje@cup.hp.com> + + * config/ia64/ia64.h (MASK_INLINE_INT_DIV_LAT): Change value. + (MASK_INLINE_INT_DIV_THR): Ditto. + (MASK_INLINE_SQRT_LAT): Ditto. + (MASK_INLINE_SQRT_THR): Ditto. + (MASK_DWARF2_ASM): Ditto. + (MASK_EARLY_STOP_BITS): Ditto. + 2004-02-02 Paul Brook <paul@codesourcery.com> Merge from csl-arm-branch. diff --git a/gcc/config/ia64/ia64.h b/gcc/config/ia64/ia64.h index 74c5465..491487c 100644 --- a/gcc/config/ia64/ia64.h +++ b/gcc/config/ia64/ia64.h @@ -84,17 +84,17 @@ extern int target_flags; #define MASK_INLINE_FLOAT_DIV_THR 0x00001000 /* inline div, max throughput. */ -#define MASK_INLINE_INT_DIV_LAT 0x00000800 /* inline div, min latency. */ +#define MASK_INLINE_INT_DIV_LAT 0x00002000 /* inline div, min latency. */ -#define MASK_INLINE_INT_DIV_THR 0x00001000 /* inline div, max throughput. */ +#define MASK_INLINE_INT_DIV_THR 0x00004000 /* inline div, max throughput. */ -#define MASK_INLINE_SQRT_LAT 0x00002000 /* inline sqrt, min latency. */ +#define MASK_INLINE_SQRT_LAT 0x00008000 /* inline sqrt, min latency. */ -#define MASK_INLINE_SQRT_THR 0x00004000 /* inline sqrt, max throughput. */ +#define MASK_INLINE_SQRT_THR 0x00010000 /* inline sqrt, max throughput. */ -#define MASK_DWARF2_ASM 0x40000000 /* test dwarf2 line info via gas. */ +#define MASK_DWARF2_ASM 0x00020000 /* test dwarf2 line info via gas. */ -#define MASK_EARLY_STOP_BITS 0x00002000 /* tune stop bits for the model. */ +#define MASK_EARLY_STOP_BITS 0x00040000 /* tune stop bits for the model. */ #define TARGET_BIG_ENDIAN (target_flags & MASK_BIG_ENDIAN) |