summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/03-RetSubSubreg.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/03-RetSubSubreg.ll')
-rw-r--r--test/CodeGen/SystemZ/03-RetSubSubreg.ll22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/CodeGen/SystemZ/03-RetSubSubreg.ll b/test/CodeGen/SystemZ/03-RetSubSubreg.ll
deleted file mode 100644
index 24b7631d38..0000000000
--- a/test/CodeGen/SystemZ/03-RetSubSubreg.ll
+++ /dev/null
@@ -1,22 +0,0 @@
-; RUN: llc < %s -march=systemz | grep sr | count 3
-; RUN: llc < %s -march=systemz | grep llgfr | count 1
-; RUN: llc < %s -march=systemz | grep lgfr | count 2
-
-define i32 @foo(i32 %a, i32 %b) {
-entry:
- %c = sub i32 %a, %b
- ret i32 %c
-}
-
-define zeroext i32 @foo1(i32 %a, i32 %b) {
-entry:
- %c = sub i32 %a, %b
- ret i32 %c
-}
-
-define signext i32 @foo2(i32 %a, i32 %b) {
-entry:
- %c = sub i32 %a, %b
- ret i32 %c
-}
-