diff options
| author | Reid Kleckner <reid@kleckner.net> | 2015-04-17 01:09:53 +0000 |
|---|---|---|
| committer | Reid Kleckner <reid@kleckner.net> | 2015-04-17 01:09:53 +0000 |
| commit | 56cc879ac1080fc6210515cff888b1e3deefa95b (patch) | |
| tree | f7bd1c1dc0e75e581053f8ec4cc6031bf5044faa /llvm | |
| parent | 69afb1f8efa523b5f2abe4cc6c340e57cecd18cd (diff) | |
| download | bcm5719-llvm-56cc879ac1080fc6210515cff888b1e3deefa95b.tar.gz bcm5719-llvm-56cc879ac1080fc6210515cff888b1e3deefa95b.zip | |
Fix test failure due to racing commits
It looks like r235145 changed the .ll syntax for variadic calls. Update
tests to use the new syntax.
llvm-svn: 235156
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/CodeGen/WinEH/seh-prepared-basic.ll | 6 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/win_eh_prepare.ll | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/WinEH/seh-prepared-basic.ll b/llvm/test/CodeGen/WinEH/seh-prepared-basic.ll index a7c38814fe0..880bb3c33a8 100644 --- a/llvm/test/CodeGen/WinEH/seh-prepared-basic.ll +++ b/llvm/test/CodeGen/WinEH/seh-prepared-basic.ll @@ -17,14 +17,14 @@ target triple = "x86_64-pc-windows-msvc" ; Function Attrs: uwtable define void @do_except() #0 { entry: - call void (...)* @llvm.frameescape() + call void (...) @llvm.frameescape() invoke void @g() #5 to label %__try.cont unwind label %lpad1 lpad1: ; preds = %entry - %0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__C_specific_handler to i8*) + %ehvals = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__C_specific_handler to i8*) catch i8* bitcast (i32 (i8*, i8*)* @"\01?filt$0@0@do_except@@" to i8*) - %recover = call i8* (...)* @llvm.eh.actions(i32 1, i8* bitcast (i32 (i8*, i8*)* @"\01?filt$0@0@do_except@@" to i8*), i32 -1, i8* blockaddress(@do_except, %__try.cont)) + %recover = call i8* (...) @llvm.eh.actions(i32 1, i8* bitcast (i32 (i8*, i8*)* @"\01?filt$0@0@do_except@@" to i8*), i32 -1, i8* blockaddress(@do_except, %__try.cont)) indirectbr i8* %recover, [label %__try.cont] __try.cont: ; preds = %lpad1, %entry diff --git a/llvm/test/CodeGen/X86/win_eh_prepare.ll b/llvm/test/CodeGen/X86/win_eh_prepare.ll index 48f3ca4f7ee..a33dd92ad72 100644 --- a/llvm/test/CodeGen/X86/win_eh_prepare.ll +++ b/llvm/test/CodeGen/X86/win_eh_prepare.ll @@ -46,7 +46,7 @@ define internal i32 @filt_g(i8*, i8*) { ; CHECK: landingpad ; CHECK-NEXT: cleanup ; CHECK-NEXT: catch -; CHECK-NEXT: call i8* (...)* @llvm.eh.actions({{.*}}) +; CHECK-NEXT: call i8* (...) @llvm.eh.actions({{.*}}) ; A MinGW64-ish EH style. It could happen if a binary uses both MSVC CRT and |

