Mercurial > hg > CbC > CbC_llvm
comparison test/CodeGen/AMDGPU/large-constant-initializer.ll @ 95:afa8332a0e37 LLVM3.8
LLVM 3.8
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Oct 2015 17:48:58 +0900 |
parents | |
children | 803732b1fca8 |
comparison
equal
deleted
inserted
replaced
84:f3e34b893a5f | 95:afa8332a0e37 |
---|---|
1 ; RUN: llc -march=amdgcn -mcpu=SI < %s | |
2 ; RUN: llc -march=amdgcn -mcpu=tonga < %s | |
3 ; CHECK: s_endpgm | |
4 | |
5 @gv = external unnamed_addr addrspace(2) constant [239 x i32], align 4 | |
6 | |
7 define void @opencv_cvtfloat_crash(i32 addrspace(1)* %out, i32 %x) nounwind { | |
8 %val = load i32, i32 addrspace(2)* getelementptr ([239 x i32], [239 x i32] addrspace(2)* @gv, i64 0, i64 239), align 4 | |
9 %mul12 = mul nsw i32 %val, 7 | |
10 br i1 undef, label %exit, label %bb | |
11 | |
12 bb: | |
13 %cmp = icmp slt i32 %x, 0 | |
14 br label %exit | |
15 | |
16 exit: | |
17 ret void | |
18 } | |
19 |