[llvm] r194323 - This exposes the new calling conventions (WebKit_JS and AnyReg) via the C API by adding them to the enumeration in Core.h.
Filip Pizlo
fpizlo at apple.com
Fri Nov 8 22:00:03 PST 2013
Author: fpizlo
Date: Sat Nov 9 00:00:03 2013
New Revision: 194323
URL: http://llvm.org/viewvc/llvm-project?rev=194323&view=rev
Log:
This exposes the new calling conventions (WebKit_JS and AnyReg) via the C API by adding them to the enumeration in Core.h.
Modified:
llvm/trunk/include/llvm-c/Core.h
Modified: llvm/trunk/include/llvm-c/Core.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Core.h?rev=194323&r1=194322&r2=194323&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/Core.h (original)
+++ llvm/trunk/include/llvm-c/Core.h Sat Nov 9 00:00:03 2013
@@ -301,6 +301,8 @@ typedef enum {
LLVMCCallConv = 0,
LLVMFastCallConv = 8,
LLVMColdCallConv = 9,
+ LLVMWebKitJSCallConv = 12,
+ LLVMAnyRegCallConv = 13,
LLVMX86StdcallCallConv = 64,
LLVMX86FastcallCallConv = 65
} LLVMCallConv;
More information about the llvm-commits
mailing list