R600/SI: Default to no single precision denormals.
[oota-llvm.git] / test / CodeGen / R600 / default-fp-mode.ll
1 ; RUN: llc -march=r600 -mcpu=SI < %s | FileCheck -check-prefix=SI %s
2
3 ; SI-LABEL: @test_kernel
4 ; SI: FloatMode: 192
5 ; SI: IeeeMode: 0
6 define void @test_kernel(float addrspace(1)* %out0, double addrspace(1)* %out1) nounwind {
7   store float 0.0, float addrspace(1)* %out0
8   store double 0.0, double addrspace(1)* %out1
9   ret void
10 }