Commit a4904829 by Doug Evans

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
parent 06b967f9
...@@ -195,11 +195,11 @@ do { \ ...@@ -195,11 +195,11 @@ do { \
/* No data type wants to be aligned rounder than this. /* No data type wants to be aligned rounder than this.
32 bit values are aligned as such on the 300h for speed. */ 32 bit values are aligned as such on the 300h for speed. */
#define BIGGEST_ALIGNMENT \ #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. */ /* No structure field wants to be aligned rounder than this. */
#define BIGGEST_FIELD_ALIGNMENT \ #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. */ /* The stack goes in 16/32 bit lumps. */
#define STACK_BOUNDARY (TARGET_H8300 ? 16 : 32) #define STACK_BOUNDARY (TARGET_H8300 ? 16 : 32)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment