Skip to content

Commit

Permalink
Fix another typo in r235224 testcase. NFC.
Browse files Browse the repository at this point in the history
Third time's the charm!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235242 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ahmedbougacha committed Apr 17, 2015
1 parent fe98bed commit ab017cb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/CodeGen/AArch64/arm64-indexed-vector-ldst.ll
Original file line number Diff line number Diff line change
Expand Up @@ -6176,15 +6176,15 @@ define <2 x double> @test_v2f64_post_reg_ld1lane(double* %bar, double** %ptr, i6
; Check for dependencies between the vector and the scalar load.
define <4 x float> @test_v4f32_post_reg_ld1lane_dep_vec_on_load(float* %bar, float** %ptr, i64 %inc, <4 x float>* %dep_ptr_1, <4 x float>* %dep_ptr_2) {
; CHECK-LABEL: test_v4f32_post_reg_ld1lane_dep_vec_on_load:
; CHECk: BB#0:
; CHECk-NEXT: ldr s[[LD:[0-9]+]], [x0]
; CHECk-NEXT: movi.2d v0, #0000000000000000
; CHECk-NEXT: str q0, [x3]
; CHECk-NEXT: ldr q0, [x4]
; CHECk-NEXT: ins.s v0[1], v[[LD]][0]
; CHECk-NEXT: add [[POST:x[0-9]]], x0, x2, lsl #2
; CHECk-NEXT: str [[POST]], [x1]
; CHECk-NEXT: ret
; CHECK: BB#0:
; CHECK-NEXT: ldr s[[LD:[0-9]+]], [x0]
; CHECK-NEXT: movi.2d v0, #0000000000000000
; CHECK-NEXT: str q0, [x3]
; CHECK-NEXT: ldr q0, [x4]
; CHECK-NEXT: ins.s v0[1], v[[LD]][0]
; CHECK-NEXT: add [[POST:x[0-9]]], x0, x2, lsl #2
; CHECK-NEXT: str [[POST]], [x1]
; CHECK-NEXT: ret
%tmp1 = load float, float* %bar
store <4 x float> zeroinitializer, <4 x float>* %dep_ptr_1, align 16
%A = load <4 x float>, <4 x float>* %dep_ptr_2, align 16
Expand Down

0 comments on commit ab017cb

Please sign in to comment.