From 16005253850679a34b09a70bca32a6c0233380d6 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 2 Aug 2011 06:20:17 +0000 Subject: 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 --- lib/VMCore/Core.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/VMCore') 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))); } -- cgit v1.2.3