diff options
author | mshawcroft <mshawcroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-29 15:45:20 +0000 |
---|---|---|
committer | mshawcroft <mshawcroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-29 15:45:20 +0000 |
commit | 81b83e4691f77a1f0dc5fa65b0ef055260a5b27a (patch) | |
tree | ff763578e8cf1a54c81e858dc0968cf6eee725ce /libgcc/config/aarch64/sfp-machine.h | |
parent | e79f23c4977a09c4a63d6326f587f3e916f03218 (diff) | |
download | gcc-81b83e4691f77a1f0dc5fa65b0ef055260a5b27a.tar.gz |
[AArch64] Fix sfp-machine.h _FP_I_TYPE.
2014-01-29 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/sfp-machine.h (_FP_I_TYPE): Define
as long long.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207259 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc/config/aarch64/sfp-machine.h')
-rw-r--r-- | libgcc/config/aarch64/sfp-machine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/aarch64/sfp-machine.h b/libgcc/config/aarch64/sfp-machine.h index 61b5f720274..ddb67fb1c2b 100644 --- a/libgcc/config/aarch64/sfp-machine.h +++ b/libgcc/config/aarch64/sfp-machine.h @@ -26,7 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define _FP_W_TYPE_SIZE 64 #define _FP_W_TYPE unsigned long long #define _FP_WS_TYPE signed long long -#define _FP_I_TYPE int +#define _FP_I_TYPE long long typedef int TItype __attribute__ ((mode (TI))); typedef unsigned int UTItype __attribute__ ((mode (TI))); |