aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/extmul64.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/extmul64.ll')
-rw-r--r--test/CodeGen/X86/extmul64.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGen/X86/extmul64.ll b/test/CodeGen/X86/extmul64.ll
deleted file mode 100644
index 9e20ded1111f..000000000000
--- a/test/CodeGen/X86/extmul64.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llc < %s -march=x86 | grep mul | count 2
-
-define i64 @i32_sext_i64(i32 %a, i32 %b) {
- %aa = sext i32 %a to i64
- %bb = sext i32 %b to i64
- %cc = mul i64 %aa, %bb
- ret i64 %cc
-}
-define i64 @i32_zext_i64(i32 %a, i32 %b) {
- %aa = zext i32 %a to i64
- %bb = zext i32 %b to i64
- %cc = mul i64 %aa, %bb
- ret i64 %cc
-}