diff options
Diffstat (limited to 'test/CodeGen/AMDGPU/literals.ll')
-rw-r--r-- | test/CodeGen/AMDGPU/literals.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/AMDGPU/literals.ll b/test/CodeGen/AMDGPU/literals.ll index 9d2320cb2d19..82fbb7f46186 100644 --- a/test/CodeGen/AMDGPU/literals.ll +++ b/test/CodeGen/AMDGPU/literals.ll @@ -54,11 +54,11 @@ entry: ; CHECK-NEXT: DOT4 * T[[GPR]].W (MASKED), 1.0 define void @inline_literal_dot4(float addrspace(1)* %out) { entry: - %0 = call float @llvm.AMDGPU.dp4(<4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>, <4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>) + %0 = call float @llvm.r600.dot4(<4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>, <4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>) store float %0, float addrspace(1)* %out ret void } -declare float @llvm.AMDGPU.dp4(<4 x float>, <4 x float>) #1 +declare float @llvm.r600.dot4(<4 x float>, <4 x float>) #1 attributes #1 = { readnone } |