aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/R600/large-constant-initializer.ll
blob: 5612dd343fdb6069f6eb4275dd28be48a3f4c957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: llc -march=r600 -mcpu=SI < %s
; CHECK: s_endpgm

@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
}