From 25715f21635867d814cee580670af40bb5185be9 Mon Sep 17 00:00:00 2001 From: sveinse Date: Tue, 25 May 2004 09:48:48 +0000 Subject: Updated AVR -mint8 option and set proper 64-bit type git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82233 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/avr/avr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/config/avr') diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index 6361fbd9034..c9beb30410f 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -142,7 +142,7 @@ extern int avr_asm_only_p; #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16) #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16) #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32) -#define LONG_LONG_TYPE_SIZE 64 +#define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64) #define FLOAT_TYPE_SIZE 32 #define DOUBLE_TYPE_SIZE 32 #define LONG_DOUBLE_TYPE_SIZE 32 -- cgit v1.2.1