summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Generic
diff options
context:
space:
mode:
authorStanislav Mekhanoshin <Stanislav.Mekhanoshin@amd.com>2018-11-17 00:17:15 +0000
committerStanislav Mekhanoshin <Stanislav.Mekhanoshin@amd.com>2018-11-17 00:17:15 +0000
commitc12d64ab16a24a000a909b0f99abc40d4c9ab24b (patch)
tree7542787604a291255bc1924b62eea0dba472f06d /llvm/test/CodeGen/Generic
parentd7c6e9e9bd8e54f1f7fa532152a942bbf6013316 (diff)
downloadbcm5719-llvm-c12d64ab16a24a000a909b0f99abc40d4c9ab24b.tar.gz
bcm5719-llvm-c12d64ab16a24a000a909b0f99abc40d4c9ab24b.zip
Moved dag-combine-select-undef.ll into amdgpu. NFC.
Tests really needs target arch to be specified. llvm-svn: 347115
Diffstat (limited to 'llvm/test/CodeGen/Generic')
-rw-r--r--llvm/test/CodeGen/Generic/dag-combine-select-undef.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/llvm/test/CodeGen/Generic/dag-combine-select-undef.ll b/llvm/test/CodeGen/Generic/dag-combine-select-undef.ll
deleted file mode 100644
index 2ed636bce35..00000000000
--- a/llvm/test/CodeGen/Generic/dag-combine-select-undef.ll
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
-define void @select_undef_n1(float addrspace(1)* %a, i32 %c) {
-; CHECK-LABEL: select_undef_n1:
-; CHECK: movl $1065353216, (%rdi)
- %cc = icmp eq i32 %c, 0
- %sel = select i1 %cc, float 1.000000e+00, float undef
- store float %sel, float addrspace(1)* %a
- ret void
-}
-
-define void @select_undef_n2(float addrspace(1)* %a, i32 %c) {
-; CHECK-LABEL: select_undef_n2:
-; CHECK: movl $1065353216, (%rdi)
- %cc = icmp eq i32 %c, 0
- %sel = select i1 %cc, float undef, float 1.000000e+00
- store float %sel, float addrspace(1)* %a
- ret void
-}
OpenPOWER on IntegriCloud