diff options
| author | Jun Bum Lim <junbuml@codeaurora.org> | 2015-10-12 15:34:52 +0000 |
|---|---|---|
| committer | Jun Bum Lim <junbuml@codeaurora.org> | 2015-10-12 15:34:52 +0000 |
| commit | 54f3ddfbe28c3618ef73553e10f52e404cb7caf6 (patch) | |
| tree | 437e690613206acf807ab27e362b554541136934 | |
| parent | c4b6506521783ab26753507f91744adbd8c672f5 (diff) | |
| download | bcm5719-llvm-54f3ddfbe28c3618ef73553e10f52e404cb7caf6.tar.gz bcm5719-llvm-54f3ddfbe28c3618ef73553e10f52e404cb7caf6.zip | |
[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.
llvm-svn: 250052
| -rw-r--r-- | llvm/test/CodeGen/AArch64/aarch64-minmaxv.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/AArch64/aarch64-minmaxv.ll b/llvm/test/CodeGen/AArch64/aarch64-minmaxv.ll index 385427f2026..683cc094c98 100644 --- a/llvm/test/CodeGen/AArch64/aarch64-minmaxv.ll +++ b/llvm/test/CodeGen/AArch64/aarch64-minmaxv.ll @@ -286,9 +286,9 @@ define i64 @umin_D(<2 x i64>* nocapture readonly %arr) { 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>* nocapture readonly %arr) { 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 |

