From b686ee306b97517bf8805f6ba95999bf431930ec Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 10 Dec 1996 17:11:00 -0500 Subject: [PATCH] (TARGET_CPU32): New macro. From-SVN: r13264 --- gcc/config/m68k/m68k.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h index 581797752a3..84834626c31 100644 --- a/gcc/config/m68k/m68k.h +++ b/gcc/config/m68k/m68k.h @@ -113,6 +113,10 @@ extern int target_flags; #define MASK_5200 2048 #define TARGET_5200 (target_flags & MASK_5200) +/* Compile for a CPU32 */ + /* A 68020 without bitfields is a good heuristic for a CPU32 */ +#define TARGET_CPU32 (TARGET_68020 && !TARGET_BITFIELD) + /* Macro to define tables used to set the flags. This is a list in braces of pairs in braces, each pair being { "NAME", VALUE } -- 2.30.2