| commit | ad64f6d4e541972ee688fca23eae71b2304e567c | [log] [tgz] |
|---|---|---|
| author | Kevin Qin <Kevin.Qin@arm.com> | Mon Feb 24 02:45:03 2014 +0000 |
| committer | Kevin Qin <Kevin.Qin@arm.com> | Mon Feb 24 02:45:03 2014 +0000 |
| tree | 142c1e4286194d17bbbdc5922b0e5a623cd3c95a | |
| parent | 51bacfd9c7b671da9c6bb0c3f98cb775994cffdd [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++. llvm-svn: 202004