diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-03-08 22:32:04 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-03-08 22:32:04 +0000 |
commit | e23483d273c930173a1bff9eb0734a93c293ce92 (patch) | |
tree | 4aff9f151b847c3e326eb06c4f488d27698cad44 | |
parent | fa139b00b2f96e67aa049c027177e36bf5a7dc2f (diff) | |
download | gcc-e23483d273c930173a1bff9eb0734a93c293ce92.zip gcc-e23483d273c930173a1bff9eb0734a93c293ce92.tar.gz gcc-e23483d273c930173a1bff9eb0734a93c293ce92.tar.bz2 |
add comment
From-SVN: r50462
-rw-r--r-- | gcc/config/rs6000/sysv4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 0ba522b..aa1c0cc 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -384,6 +384,10 @@ do { \ #define ABI_STACK_BOUNDARY ((TARGET_EABI && !TARGET_ALTIVEC_ABI) ? 64 : 128) /* No data type wants to be aligned rounder than this. */ +/* FIXME: This should be keyed off of TARGET_ALTIVEC_ABI instead but + TARGET_ALTIVEC_ABI uses rs6000_altivec_abi which is only defined in + rs6000.c. Consequently, genconstants will fail to link because it + uses rtl.c which uses BIGGEST_ALIGNMENT. */ #undef BIGGEST_ALIGNMENT #define BIGGEST_ALIGNMENT ((TARGET_EABI && !TARGET_ALTIVEC) ? 64 : 128) |