[llvm-commits] [llvm] r112853 - /llvm/trunk/test/CodeGen/ARM/fnmuls.ll
Sandeep Patel
deeppatel1987 at gmail.com
Thu Sep 2 13:19:24 PDT 2010
Author: sandeep
Date: Thu Sep 2 15:19:24 2010
New Revision: 112853
URL: http://llvm.org/viewvc/llvm-project?rev=112853&view=rev
Log:
Fix an unnecessary XFAIL
Modified:
llvm/trunk/test/CodeGen/ARM/fnmuls.ll
Modified: llvm/trunk/test/CodeGen/ARM/fnmuls.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/fnmuls.ll?rev=112853&r1=112852&r2=112853&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/fnmuls.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/fnmuls.ll Thu Sep 2 15:19:24 2010
@@ -1,20 +1,18 @@
-; XFAIL: *
; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s
-; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=1 | FileCheck %s
-; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=0 | FileCheck %s
+; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s
; RUN: llc < %s -march=arm -mcpu=cortex-a9 | FileCheck %s
-define float @test1(float %a, float %b) nounwind {
-; CHECK: fnmscs s2, s1, s0
+define arm_aapcs_vfpcc float @test1(float %a, float %b) nounwind {
+; CHECK: vnmul.f32 s0, s0, s1
entry:
%0 = fmul float %a, %b
%1 = fsub float -0.0, %0
ret float %1
}
-define float @test2(float %a, float %b) nounwind {
-; CHECK: fnmscs s2, s1, s0
+define arm_aapcs_vfpcc float @test2(float %a, float %b) nounwind {
+; CHECK: vnmul.f32 s0, s0, s1
entry:
%0 = fmul float %a, %b
%1 = fmul float -1.0, %0
More information about the llvm-commits
mailing list