Rename a test to be more inclusive.
authorCameron Zwarich <zwarich@apple.com>
Wed, 16 Mar 2011 22:20:12 +0000 (22:20 +0000)
committerCameron Zwarich <zwarich@apple.com>
Wed, 16 Mar 2011 22:20:12 +0000 (22:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127765 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/bool-args-zext.ll [deleted file]
test/CodeGen/X86/bool-zext.ll [new file with mode: 0644]

diff --git a/test/CodeGen/X86/bool-args-zext.ll b/test/CodeGen/X86/bool-args-zext.ll
deleted file mode 100644 (file)
index 67168d4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-; RUN: llc < %s -march=x86-64 | FileCheck %s
-
-; CHECK: @bar1
-; CHECK: movzbl
-; CHECK: callq
-define void @bar1(i1 zeroext %v1) nounwind ssp {
-entry:
-  %conv = zext i1 %v1 to i32
-  %call = tail call i32 (...)* @foo(i32 %conv) nounwind
-  ret void
-}
-
-; CHECK: @bar2
-; CHECK-NOT: movzbl
-; CHECK: callq
-define void @bar2(i8 zeroext %v1) nounwind ssp {
-entry:
-  %conv = zext i8 %v1 to i32
-  %call = tail call i32 (...)* @foo(i32 %conv) nounwind
-  ret void
-}
-
-declare i32 @foo(...)
diff --git a/test/CodeGen/X86/bool-zext.ll b/test/CodeGen/X86/bool-zext.ll
new file mode 100644 (file)
index 0000000..67168d4
--- /dev/null
@@ -0,0 +1,23 @@
+; RUN: llc < %s -march=x86-64 | FileCheck %s
+
+; CHECK: @bar1
+; CHECK: movzbl
+; CHECK: callq
+define void @bar1(i1 zeroext %v1) nounwind ssp {
+entry:
+  %conv = zext i1 %v1 to i32
+  %call = tail call i32 (...)* @foo(i32 %conv) nounwind
+  ret void
+}
+
+; CHECK: @bar2
+; CHECK-NOT: movzbl
+; CHECK: callq
+define void @bar2(i8 zeroext %v1) nounwind ssp {
+entry:
+  %conv = zext i8 %v1 to i32
+  %call = tail call i32 (...)* @foo(i32 %conv) nounwind
+  ret void
+}
+
+declare i32 @foo(...)