comparison test/CodeGen/NVPTX/load-sext-i1.ll @ 0:95c75e76d11b

LLVM 3.4
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 13:56:28 +0900
parents
children afa8332a0e37
comparison
equal deleted inserted replaced
-1:000000000000 0:95c75e76d11b
1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2
3 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
4 target triple = "nvptx-nvidia-cuda"
5
6 define void @main(i1* %a1, i32 %a2, i32* %arg3) {
7 ; CHECK: ld.u8
8 ; CHECK-NOT: ld.u1
9 %t1 = getelementptr i1* %a1, i32 %a2
10 %t2 = load i1* %t1
11 %t3 = sext i1 %t2 to i32
12 store i32 %t3, i32* %arg3
13 ret void
14 }