diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/fp_to_uint.f64.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/fp_to_uint.f64.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/R600/fp_to_uint.f64.ll b/llvm/test/CodeGen/R600/fp_to_uint.f64.ll index 472c378fd4d..41bc2a78001 100644 --- a/llvm/test/CodeGen/R600/fp_to_uint.f64.ll +++ b/llvm/test/CodeGen/R600/fp_to_uint.f64.ll @@ -49,7 +49,7 @@ define void @fp_to_uint_v4i32_v4f64(<4 x i32> addrspace(1)* %out, <4 x double> % define void @fp_to_uint_i64_f64(i64 addrspace(1)* %out, double addrspace(1)* %in) { %tid = call i32 @llvm.r600.read.tidig.x() nounwind readnone %gep = getelementptr double, double addrspace(1)* %in, i32 %tid - %val = load double addrspace(1)* %gep, align 8 + %val = load double, double addrspace(1)* %gep, align 8 %cast = fptoui double %val to i64 store i64 %cast, i64 addrspace(1)* %out, align 4 ret void |