diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-09-30 18:53:25 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-09-30 18:53:25 +0000 |
commit | 9afbfbe71c8e69e2643d468a041473d07d2635d4 (patch) | |
tree | 39efd2207dbe552737e9367eb5324c4547b8ba8a /lib/Sema/TargetAttributesSema.cpp | |
parent | ccae76c8214c5ff469e0291371127084d252ac7a (diff) |
Support dllimport and dllexport on x86-64 Windows. PR10978. Patch by Ruben Van Boxem.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/TargetAttributesSema.cpp')
-rw-r--r-- | lib/Sema/TargetAttributesSema.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Sema/TargetAttributesSema.cpp b/lib/Sema/TargetAttributesSema.cpp index 877bc32521..3a065cead5 100644 --- a/lib/Sema/TargetAttributesSema.cpp +++ b/lib/Sema/TargetAttributesSema.cpp @@ -248,7 +248,8 @@ namespace { default: break; } } - if (Attr.getName()->getName() == "force_align_arg_pointer" || + if (Triple.getArch() != llvm::Triple::x86_64 && + Attr.getName()->getName() == "force_align_arg_pointer" || Attr.getName()->getName() == "__force_align_arg_pointer__") { HandleX86ForceAlignArgPointerAttr(D, Attr, S); return true; @@ -264,14 +265,14 @@ const TargetAttributesSema &Sema::getTargetAttributesSema() const { const llvm::Triple &Triple(Context.getTargetInfo().getTriple()); switch (Triple.getArch()) { - default: - return *(TheTargetAttributesSema = new TargetAttributesSema); - case llvm::Triple::msp430: return *(TheTargetAttributesSema = new MSP430AttributesSema); case llvm::Triple::mblaze: return *(TheTargetAttributesSema = new MBlazeAttributesSema); case llvm::Triple::x86: + case llvm::Triple::x86_64: return *(TheTargetAttributesSema = new X86AttributesSema); + default: + return *(TheTargetAttributesSema = new TargetAttributesSema); } } |