diff options
author | Derek Schuff <dschuff@google.com> | 2015-01-28 20:24:52 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2015-01-28 20:24:52 +0000 |
commit | 3970a7ec9b630a32c6327e6cb20cbb5febd7389f (patch) | |
tree | 056a07e369c3fd4caa96a7b66493e69ffea7da47 /clang/include/clang-c | |
parent | fee9e20b903b11c677495825728f017dd705d9fc (diff) | |
download | bcm5719-llvm-3970a7ec9b630a32c6327e6cb20cbb5febd7389f.tar.gz bcm5719-llvm-3970a7ec9b630a32c6327e6cb20cbb5febd7389f.zip |
Remove support for pnaclcall attribute
Summary:
It was used for interoperability with PNaCl's calling conventions, but
it's no longer needed.
Also Remove NaCl*ABIInfo which just existed to delegate to either the portable
or native ABIInfo, and remove checkCallingConvention which was now a no-op
override.
Reviewers: jvoung
Subscribers: jfb, llvm-commits
Differential Revision: http://reviews.llvm.org/D7206
llvm-svn: 227362
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 925d0bfd092..ac8ce1c85ef 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2854,7 +2854,7 @@ enum CXCallingConv { CXCallingConv_X86Pascal = 5, CXCallingConv_AAPCS = 6, CXCallingConv_AAPCS_VFP = 7, - CXCallingConv_PnaclCall = 8, + /* Value 8 was PnaclCall, but it was never used, so it could safely be re-used. */ CXCallingConv_IntelOclBicc = 9, CXCallingConv_X86_64Win64 = 10, CXCallingConv_X86_64SysV = 11, |