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