[llvm] r334360 - [X86] Fix forward declaration in a test case that was messed up in r334358
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Sat Jun 9 23:43:48 PDT 2018
Author: ctopper
Date: Sat Jun 9 23:43:48 2018
New Revision: 334360
URL: http://llvm.org/viewvc/llvm-project?rev=334360&view=rev
Log:
[X86] Fix forward declaration in a test case that was messed up in r334358
Modified:
llvm/trunk/test/CodeGen/X86/avx512-intrinsics.ll
Modified: llvm/trunk/test/CodeGen/X86/avx512-intrinsics.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx512-intrinsics.ll?rev=334360&r1=334359&r2=334360&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx512-intrinsics.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx512-intrinsics.ll Sat Jun 9 23:43:48 2018
@@ -1582,7 +1582,7 @@ define <16 x float> @test_mm512_add_roun
%1 = call <16 x float> @llvm.x86.avx512.add.ps.512(<16 x float> %a0, <16 x float> %a1, i32 4)
ret <16 x float> %1
}
-declare <16 x float> @llvm.x86.avx512..add.ps.512(<16 x float>, <16 x float>, i32)
+declare <16 x float> @llvm.x86.avx512.add.ps.512(<16 x float>, <16 x float>, i32)
define <16 x float> @test_mm512_mask_sub_round_ps_rn_sae(<16 x float> %a0, <16 x float> %a1, <16 x float> %src, i16 %mask) {
; CHECK-LABEL: test_mm512_mask_sub_round_ps_rn_sae:
More information about the llvm-commits
mailing list