aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-03-02 18:40:11 +0000
committerDoug Evans <dje@gnu.org>1996-03-02 18:40:11 +0000
commita490482938c0e7ca7193571901dd16df9260a92a (patch)
tree09a4a4c2ba2f698e08cd1093f39861470d23047f
parent06b967f926b788a80f2880a3fd09e0969964808d (diff)
downloadgcc-a490482938c0e7ca7193571901dd16df9260a92a.zip
gcc-a490482938c0e7ca7193571901dd16df9260a92a.tar.gz
gcc-a490482938c0e7ca7193571901dd16df9260a92a.tar.bz2
h8300.h (BIGGEST_FIELD_ALIGNMENT): Replace uses of TARGET_ALIGN_STRUCT_300 with TARGET_ALIGN_300.
* h8300.h (BIGGEST_FIELD_ALIGNMENT): Replace uses of TARGET_ALIGN_STRUCT_300 with TARGET_ALIGN_300. (BIGGEST_ALIGNMENT): Likewise. From-SVN: r11403
-rw-r--r--gcc/config/h8300/h8300.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h
index 4af97f2..f219575 100644
--- a/gcc/config/h8300/h8300.h
+++ b/gcc/config/h8300/h8300.h
@@ -195,11 +195,11 @@ do { \
/* No data type wants to be aligned rounder than this.
32 bit values are aligned as such on the 300h for speed. */
#define BIGGEST_ALIGNMENT \
-((TARGET_H8300H && ! TARGET_ALIGN_STRUCT_300) ? 32 : 16)
+((TARGET_H8300H && ! TARGET_ALIGN_300) ? 32 : 16)
/* No structure field wants to be aligned rounder than this. */
#define BIGGEST_FIELD_ALIGNMENT \
-((TARGET_H8300H && ! TARGET_ALIGN_STRUCT_300) ? 32 : 16)
+((TARGET_H8300H && ! TARGET_ALIGN_300) ? 32 : 16)
/* The stack goes in 16/32 bit lumps. */
#define STACK_BOUNDARY (TARGET_H8300 ? 16 : 32)