summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp
diff options
context:
space:
mode:
authorKevin Qin <Kevin.Qin@arm.com>2014-02-24 02:45:03 +0000
committerKevin Qin <Kevin.Qin@arm.com>2014-02-24 02:45:03 +0000
commit491dd1c4d126187cfe3798b22f9109b7219fce7f (patch)
tree6386994be7293403a1862922df140825aee5729d /test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp
parentef725a70d30d805f109a55c376b78f6594862210 (diff)
[AArch64] Change int64_t from 'long long int' to 'long int' for AArch64 target.
Most 64-bit targets define int64_t as long int, and AArch64 should make same definition to follow LP64 model. In GNU tool chain, int64_t is defined as long int for 64-bit target. So to get consistent with GNU, it's better Changing int64_t from 'long long int' to 'long int', otherwise clang will get different name mangling suffix compared with g++. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202004 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp')
-rw-r--r--test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp b/test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp
index 2514704f1d..e54975d820 100644
--- a/test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp
+++ b/test/CodeGenCXX/aarch64-mangle-neon-vectors.cpp
@@ -5,8 +5,8 @@ typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef signed char int8_t;
typedef signed short int16_t;
-typedef signed long long int64_t;
-typedef unsigned long long uint64_t;
+typedef signed long int64_t;
+typedef unsigned long uint64_t;
typedef unsigned char poly8_t;
typedef unsigned short poly16_t;
typedef __fp16 float16_t;