aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/mulll.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/mulll.ll')
-rw-r--r--test/CodeGen/Mips/mulll.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/CodeGen/Mips/mulll.ll b/test/CodeGen/Mips/mulll.ll
deleted file mode 100644
index 9a2acd417381..000000000000
--- a/test/CodeGen/Mips/mulll.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llc -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
-
-@iiii = global i64 5, align 8
-@jjjj = global i64 -6, align 8
-@kkkk = common global i64 0, align 8
-
-define void @test() nounwind {
-entry:
- %0 = load i64, i64* @iiii, align 8
- %1 = load i64, i64* @jjjj, align 8
- %mul = mul nsw i64 %1, %0
- store i64 %mul, i64* @kkkk, align 8
-; 16: multu ${{[0-9]+}}, ${{[0-9]+}}
-; 16: mfhi ${{[0-9]+}}
-; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
-; 16: mflo ${{[0-9]+}}
-; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
-; 16: mflo ${{[0-9]+}}
-
- ret void
-}