]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/R600/fconst64.ll
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / CodeGen / R600 / fconst64.ll
1 ; RUN: llc < %s -march=r600 -mcpu=tahiti -verify-machineinstrs | FileCheck %s
2
3 ; CHECK: @fconst_f64
4 ; CHECK-DAG: S_MOV_B32 {{s[0-9]+}}, 0x40140000
5 ; CHECK-DAG: S_MOV_B32 {{s[0-9]+}}, 0
6
7 define void @fconst_f64(double addrspace(1)* %out, double addrspace(1)* %in) {
8    %r1 = load double addrspace(1)* %in
9    %r2 = fadd double %r1, 5.000000e+00
10    store double %r2, double addrspace(1)* %out
11    ret void
12 }