diff options
author | sveinse <sveinse@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-25 09:48:48 +0000 |
---|---|---|
committer | sveinse <sveinse@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-25 09:48:48 +0000 |
commit | 25715f21635867d814cee580670af40bb5185be9 (patch) | |
tree | 678e06817260b9e645425b74827ddf0fa482d27b /gcc/config/avr | |
parent | fc231f284b60ec2f395f6857c6a86df59fd2185c (diff) | |
download | gcc-25715f21635867d814cee580670af40bb5185be9.tar.gz |
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
Diffstat (limited to 'gcc/config/avr')
-rw-r--r-- | gcc/config/avr/avr.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |