aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/NVPTX/pr16278.ll
blob: a836eaf2e51f936ff09f0322154966f703ea0ba8 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s


@one_f = addrspace(4) global float 1.000000e+00, align 4

define float @foo() {
; CHECK: ld.const.f32
  %val = load float, float addrspace(4)* @one_f
  ret float %val
}