aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2013-02-20 22:28:41 +0000
committerJordan Rose <jordan_rose@apple.com>2013-02-20 22:28:41 +0000
commit90a7820de7685cec75fcd47e98f0f9623c0f0477 (patch)
tree6e73d6bf839f1ee9b19e9e50c29e05ca4f1f6b37 /lib/Basic
parentd6d864fc0674039d1884e6b8d9089f40370af7d8 (diff)
Revert "intmax_t is long long on Darwin, not long."
'long' and 'long long' are different for the purposes of mangling. This caused <rdar://problem/13254874>. This reverts commit c2f994d31ec85e9af811af38eb1b28709aef0b2c. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic')
-rw-r--r--lib/Basic/Targets.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp
index 4e66fe5739..eaf2e7d05e 100644
--- a/lib/Basic/Targets.cpp
+++ b/lib/Basic/Targets.cpp
@@ -3119,8 +3119,6 @@ class DarwinX86_64TargetInfo : public DarwinTargetInfo<X86_64TargetInfo> {
public:
DarwinX86_64TargetInfo(const std::string& triple)
: DarwinTargetInfo<X86_64TargetInfo>(triple) {
- IntMaxType = SignedLongLong;
- UIntMaxType = UnsignedLongLong;
Int64Type = SignedLongLong;
MaxVectorAlign = 256;
}