From 514d514bb27eaff0088b972ceeb01f0330780973 Mon Sep 17 00:00:00 2001 From: Stephen Lin Date: Sat, 20 Apr 2013 16:21:26 +0000 Subject: [PATCH] Minor renaming of tests (for consistency with an in-development patch) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179954 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/tailcall-64.ll | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/CodeGen/X86/tailcall-64.ll b/test/CodeGen/X86/tailcall-64.ll index eb2fef01155..60fe7766179 100644 --- a/test/CodeGen/X86/tailcall-64.ll +++ b/test/CodeGen/X86/tailcall-64.ll @@ -61,7 +61,7 @@ define {i64, i64} @test_pair_notail() { ; CHECK: test_pair_notail: ; CHECK-NOT: jmp _testi -define {i64, i64} @test_pair_trivial_extract() { +define {i64, i64} @test_pair_extract_trivial() { %A = tail call { i64, i64} @testp() %x = extractvalue { i64, i64} %A, 0 %y = extractvalue { i64, i64} %A, 1 @@ -72,10 +72,10 @@ define {i64, i64} @test_pair_trivial_extract() { ret { i64, i64} %c } -; CHECK: test_pair_trivial_extract: +; CHECK: test_pair_extract_trivial: ; CHECK: jmp _testp ## TAILCALL -define {i64, i64} @test_pair_notail_extract() { +define {i64, i64} @test_pair_extract_notail() { %A = tail call { i64, i64} @testp() %x = extractvalue { i64, i64} %A, 0 %y = extractvalue { i64, i64} %A, 1 @@ -86,10 +86,10 @@ define {i64, i64} @test_pair_notail_extract() { ret { i64, i64} %c } -; CHECK: test_pair_notail_extract: +; CHECK: test_pair_extract_notail: ; CHECK-NOT: jmp _testp -define {i8*, i64} @test_pair_conv_extract() { +define {i8*, i64} @test_pair_extract_conv() { %A = tail call { i64, i64} @testp() %x = extractvalue { i64, i64} %A, 0 %y = extractvalue { i64, i64} %A, 1 @@ -102,10 +102,10 @@ define {i8*, i64} @test_pair_conv_extract() { ret { i8*, i64} %c } -; CHECK: test_pair_conv_extract: +; CHECK: test_pair_extract_conv: ; CHECK: jmp _testp ## TAILCALL -define {i64, i64} @test_pair_multiple_extract() { +define {i64, i64} @test_pair_extract_multiple() { %A = tail call { i64, i64} @testp() %x = extractvalue { i64, i64} %A, 0 %y = extractvalue { i64, i64} %A, 1 @@ -122,10 +122,10 @@ define {i64, i64} @test_pair_multiple_extract() { ret { i64, i64} %e } -; CHECK: test_pair_multiple_extract: +; CHECK: test_pair_extract_multiple: ; CHECK: jmp _testp ## TAILCALL -define {i64, i64} @test_pair_undef_extract() { +define {i64, i64} @test_pair_extract_undef() { %A = tail call { i64, i64} @testp() %x = extractvalue { i64, i64} %A, 0 @@ -134,7 +134,7 @@ define {i64, i64} @test_pair_undef_extract() { ret { i64, i64} %b } -; CHECK: test_pair_undef_extract: +; CHECK: test_pair_extract_undef: ; CHECK: jmp _testp ## TAILCALL declare { i64, { i32, i32 } } @testn() -- 2.11.0