[WebAssembly] Don't perform the returned-argument optimization on constants.
[oota-llvm.git] / test / CodeGen / NVPTX / pr16278.ll
1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2
3
4 @one_f = addrspace(4) global float 1.000000e+00, align 4
5
6 define float @foo() {
7 ; CHECK: ld.const.f32
8   %val = load float, float addrspace(4)* @one_f
9   ret float %val
10 }