aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCharles Davis <cdavis5x@gmail.com>2013-08-30 04:39:01 +0000
committerCharles Davis <cdavis5x@gmail.com>2013-08-30 04:39:01 +0000
commite8519c31a6ef853b627d557702ac1890f18ce2c9 (patch)
treeab9059f5be572402762474d4d95fdb91821ff734 /tools
parent3f125819c648101cbfd3dfb7b3776834d6cc3423 (diff)
downloadclang-e8519c31a6ef853b627d557702ac1890f18ce2c9.tar.gz
Add ms_abi and sysv_abi attribute handling.
Based on a patch by Benno Rice! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/libclang/CXType.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/libclang/CXType.cpp b/tools/libclang/CXType.cpp
index 6c937c6e52..dcf69b5ba4 100644
--- a/tools/libclang/CXType.cpp
+++ b/tools/libclang/CXType.cpp
@@ -509,6 +509,8 @@ CXCallingConv clang_getFunctionTypeCallingConv(CXType X) {
TCALLINGCONV(X86FastCall);
TCALLINGCONV(X86ThisCall);
TCALLINGCONV(X86Pascal);
+ TCALLINGCONV(X86_64Win64);
+ TCALLINGCONV(X86_64SysV);
TCALLINGCONV(AAPCS);
TCALLINGCONV(AAPCS_VFP);
TCALLINGCONV(PnaclCall);