aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/arm
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2009-06-10 16:31:29 +0000
committerNathan Froyd <froydnj@gcc.gnu.org>2009-06-10 16:31:29 +0000
commitd8259b07b049c309339c8b1fde4c6ac3ff886cc3 (patch)
tree5057b605e5e082279e2ea302cde5316635f1c7c1 /gcc/config/arm
parentc25696045a8422510cc2bdea80cd68eabc16d25f (diff)
downloadgcc-d8259b07b049c309339c8b1fde4c6ac3ff886cc3.zip
gcc-d8259b07b049c309339c8b1fde4c6ac3ff886cc3.tar.gz
gcc-d8259b07b049c309339c8b1fde4c6ac3ff886cc3.tar.bz2
tree.h (tree_base): Add packed_flag and user_align fields.
gcc/ * tree.h (tree_base): Add packed_flag and user_align fields. Decrease size of spare field. (TYPE_USER_ALIGN): Use user_align from tree_base. (DECL_USER_ALIGN): Likewise. (TYPE_PACKED): Use packed_flag from tree_base. (DECL_PACKED): Likewise. (tree_type): Delete packed_flag and user_align fields. Widen precision field. Widen mode field and shuffle fields to align mode on an 8-bit boundary. (tree_decl_common): Delete decl_flag_1 and user_align fields. Renumber decl_flag_* fields. Fix comments. Widen decl_common_unused field. (DECL_HAS_VALUE_EXPR_P): Adjust for renumbering of decl_flag_* fields. (DECL_EXTERNAL): Likewise. (DECL_BIT_FIELD): Likewise. (DECL_NONADDRESSABLE_P): Likewise. (TYPE_DECL_SUPRESS_DEBUG): Likewise. * config/arm/arm-modes.def (XImode): Make it an INT_MODE. gcc/testsuite/ * gcc.target/arm/neon-modes-1.c: New test. From-SVN: r148348
Diffstat (limited to 'gcc/config/arm')
-rw-r--r--gcc/config/arm/arm-modes.def4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/config/arm/arm-modes.def b/gcc/config/arm/arm-modes.def
index 0ff876f..73b5b4d 100644
--- a/gcc/config/arm/arm-modes.def
+++ b/gcc/config/arm/arm-modes.def
@@ -62,6 +62,4 @@ VECTOR_MODES (FLOAT, 16); /* V8HF V4SF V2DF */
INT_MODE (EI, 24);
INT_MODE (OI, 32);
INT_MODE (CI, 48);
-/* ??? This should actually have 512 bits but the precision only has 9
- bits. */
-FRACTIONAL_INT_MODE (XI, 511, 64);
+INT_MODE (XI, 64);