Skip to content

Commit

Permalink
This test fails on ARM. The test shouldn't explicitly specify alignme…
Browse files Browse the repository at this point in the history
…nt (and alignment 4 is wrong) and requires hard-float.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130875 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
gkistanova committed May 4, 2011
1 parent 6a0ce75 commit ff4f6ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/CodeGen/ARM/2009-09-09-fpcmp-ole.ll
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
; RUN: llc -O1 -march=arm -mattr=+vfp2 < %s | FileCheck %s
; RUN: llc -O1 -march=arm -mattr=+vfp2 -float-abi=hard < %s | FileCheck %s
; pr4939

define void @test(double* %x, double* %y) nounwind {
%1 = load double* %x, align 4
%2 = load double* %y, align 4
%1 = load double* %x
%2 = load double* %y
%3 = fsub double -0.000000e+00, %1
%4 = fcmp ugt double %2, %3
br i1 %4, label %bb1, label %bb2

bb1:
;CHECK: vstrhi.64
store double %1, double* %y, align 4
store double %1, double* %y
br label %bb2

bb2:
Expand Down

0 comments on commit ff4f6ea

Please sign in to comment.