aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/tailcall-64.ll
diff options
context:
space:
mode:
authorStephen Lin <stephenwlin@gmail.com>2013-04-20 16:21:26 +0000
committerStephen Lin <stephenwlin@gmail.com>2013-04-20 16:21:26 +0000
commit514d514bb27eaff0088b972ceeb01f0330780973 (patch)
tree9c7801d6ed4511fa013b8b6c9bae76e8e744659a /test/CodeGen/X86/tailcall-64.ll
parent75f013822bfd48c1f463e8f9f49a6274481051e1 (diff)
downloadexternal_llvm-514d514bb27eaff0088b972ceeb01f0330780973.zip
external_llvm-514d514bb27eaff0088b972ceeb01f0330780973.tar.gz
external_llvm-514d514bb27eaff0088b972ceeb01f0330780973.tar.bz2
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
Diffstat (limited to 'test/CodeGen/X86/tailcall-64.ll')
-rw-r--r--test/CodeGen/X86/tailcall-64.ll20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/CodeGen/X86/tailcall-64.ll b/test/CodeGen/X86/tailcall-64.ll
index eb2fef0..60fe776 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()