[llvm] r250052 - [AArch64]Fix bug in function names in test case
Jun Bum Lim via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 12 08:34:52 PDT 2015
Author: junbuml
Date: Mon Oct 12 10:34:52 2015
New Revision: 250052
URL: http://llvm.org/viewvc/llvm-project?rev=250052&view=rev
Log:
[AArch64]Fix bug in function names in test case
Functions in this test case need to be renamed as its names are the same
as the instructions we are comparing with.
Modified:
llvm/trunk/test/CodeGen/AArch64/aarch64-minmaxv.ll
Modified: llvm/trunk/test/CodeGen/AArch64/aarch64-minmaxv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/aarch64-minmaxv.ll?rev=250052&r1=250051&r2=250052&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/aarch64-minmaxv.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/aarch64-minmaxv.ll Mon Oct 12 10:34:52 2015
@@ -286,9 +286,9 @@ define i64 @umin_D(<2 x i64>* nocapture
ret i64 %r
}
-; CHECK-LABEL: f_fmaxnmv
+; CHECK-LABEL: fmaxnm_S
; CHECK: fmaxnmv
-define float @f_fmaxnmv(<4 x float>* nocapture readonly %arr) {
+define float @fmaxnm_S(<4 x float>* nocapture readonly %arr) {
%rdx.minmax.select = load <4 x float>, <4 x float>* %arr
%rdx.shuf = shufflevector <4 x float> %rdx.minmax.select, <4 x float> undef, <4 x i32> <i32 2, i32 3, i32 undef, i32 undef>
%rdx.minmax.cmp = fcmp fast oge <4 x float> %rdx.minmax.select, %rdx.shuf
@@ -302,9 +302,9 @@ define float @f_fmaxnmv(<4 x float>* noc
ret float %r
}
-; CHECK-LABEL: f_fminnmv
+; CHECK-LABEL: fminnm_S
; CHECK: fminnmv
-define float @f_fminnmv(<4 x float>* nocapture readonly %arr) {
+define float @fminnm_S(<4 x float>* nocapture readonly %arr) {
%rdx.minmax.select = load <4 x float>, <4 x float>* %arr
%rdx.shuf = shufflevector <4 x float> %rdx.minmax.select, <4 x float> undef, <4 x i32> <i32 2, i32 3, i32 undef, i32 undef>
%rdx.minmax.cmp = fcmp fast ole <4 x float> %rdx.minmax.select, %rdx.shuf
More information about the llvm-commits
mailing list