From a490482938c0e7ca7193571901dd16df9260a92a Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 2 Mar 1996 18:40:11 +0000 Subject: [PATCH] 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 --- gcc/config/h8300/h8300.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 4af97f2cb79..f21957561ae 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) -- 2.30.2