diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-06-14 04:26:09 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-06-14 04:26:09 +0000 |
| commit | 5eb038a9f2ac7ed0903502285690299f5be7d979 (patch) | |
| tree | d879337a5060519be3dd39dc31b9787e4428af8d /llvm/test/CodeGen/R600/large-constant-initializer.ll | |
| parent | b2e8744eeb80dd6d37caf0fdac3f92af618d2650 (diff) | |
| download | bcm5719-llvm-5eb038a9f2ac7ed0903502285690299f5be7d979.tar.gz bcm5719-llvm-5eb038a9f2ac7ed0903502285690299f5be7d979.zip | |
R600: Add failing testcases.
These are reduced from assert in the
OpenCV CvtColor8u.BGR5652GRAY test.
llvm-svn: 210969
Diffstat (limited to 'llvm/test/CodeGen/R600/large-constant-initializer.ll')
| -rw-r--r-- | llvm/test/CodeGen/R600/large-constant-initializer.ll | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/large-constant-initializer.ll b/llvm/test/CodeGen/R600/large-constant-initializer.ll new file mode 100644 index 00000000000..d22fb7161b6 --- /dev/null +++ b/llvm/test/CodeGen/R600/large-constant-initializer.ll @@ -0,0 +1,18 @@ +; XFAIL: * +; RUN: llc -march=r600 -mcpu=SI < %s + +@gv = external unnamed_addr addrspace(2) constant [239 x i32], align 4 + +define void @opencv_cvtfloat_crash(i32 addrspace(1)* %out, i32 %x) nounwind { + %val = load i32 addrspace(2)* getelementptr ([239 x i32] addrspace(2)* @gv, i64 0, i64 239), align 4 + %mul12 = mul nsw i32 %val, 7 + br i1 undef, label %exit, label %bb + +bb: + %cmp = icmp slt i32 %x, 0 + br label %exit + +exit: + ret void +} + |

