Skip to content

Commit e53ae50

Browse files
committed
This test fails on ARM. The test shouldn't explicitly specify alignment (and alignment 4 is wrong) and requires hard-float.
llvm-svn: 130875
1 parent 1fb95c9 commit e53ae50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/test/CodeGen/ARM/2009-09-09-fpcmp-ole.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
; RUN: llc -O1 -march=arm -mattr=+vfp2 < %s | FileCheck %s
1+
; RUN: llc -O1 -march=arm -mattr=+vfp2 -float-abi=hard < %s | FileCheck %s
22
; pr4939
33

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

1111
bb1:
1212
;CHECK: vstrhi.64
13-
store double %1, double* %y, align 4
13+
store double %1, double* %y
1414
br label %bb2
1515

1616
bb2:

0 commit comments

Comments
 (0)