summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/07-BrUnCond.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
committerDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
commit29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf (patch)
tree3de39be9068ed749690b6ce82fb34b79b0232f70 /test/CodeGen/SystemZ/07-BrUnCond.ll
parentb36e03d987c843ccb731627ffd2b1db17bd72e39 (diff)
downloadllvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.gz
llvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.bz2
llvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.xz
Remove the SystemZ backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ/07-BrUnCond.ll')
-rw-r--r--test/CodeGen/SystemZ/07-BrUnCond.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/SystemZ/07-BrUnCond.ll b/test/CodeGen/SystemZ/07-BrUnCond.ll
deleted file mode 100644
index ac6067abbe..0000000000
--- a/test/CodeGen/SystemZ/07-BrUnCond.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc < %s
-
-target datalayout = "E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128"
-target triple = "s390x-ibm-linux"
-
-define void @foo() noreturn nounwind {
-entry:
- tail call void @baz() nounwind
- br label %l1
-
-l1: ; preds = %entry, %l1
- tail call void @bar() nounwind
- br label %l1
-}
-
-declare void @bar()
-
-declare void @baz()