diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-02 06:20:17 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-02 06:20:17 +0000 |
commit | 16005253850679a34b09a70bca32a6c0233380d6 (patch) | |
tree | e67e2fbb862bd91fbcc5316d3abc2fe51184bc32 /lib/VMCore/Core.cpp | |
parent | fcb4356dee96563def584fe38eeafb3eb63c5cd8 (diff) |
Remove the LLVMBuildUnwind C API function.
The 'unwind' function is going away with the new EH rewrite. This is step 0 in
keeping front-ends from using it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136683 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Core.cpp')
-rw-r--r-- | lib/VMCore/Core.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/Core.cpp b/lib/VMCore/Core.cpp index ce010c1b7d..bff0d865cf 100644 --- a/lib/VMCore/Core.cpp +++ b/lib/VMCore/Core.cpp @@ -1683,10 +1683,6 @@ LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn, Name)); } -LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef B) { - return wrap(unwrap(B)->CreateUnwind()); -} - LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { return wrap(unwrap(B)->CreateResume(unwrap(Exn))); } |