Skip to content

Commit

Permalink
[PowerPC][NFC] fix the LIT regressions
Browse files Browse the repository at this point in the history
This is to fix the wrong checking introdued in D64195.
`std {{[0-9]+}}, 16(1)` is the store for the lr register. It breaks
previous testing point before D64195.
  • Loading branch information
chenzheng1030 committed Nov 7, 2022
1 parent 83255c4 commit eb421c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/PowerPC/ppc64-smallarg.ll
Expand Up @@ -50,7 +50,7 @@ entry:
ret void
}
; CHECK: @caller2
; CHECK: std {{[0-9]+}}, 16(1)
; CHECK: stw {{[0-9]+}}, 156(1)
; CHECK: bl test2

declare float @test2(float, float, float, float, float, float, float, float, float, float, float, float, float, float)
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/PowerPC/ppc64le-smallarg.ll
Expand Up @@ -50,7 +50,7 @@ entry:
ret void
}
; CHECK: @caller2
; CHECK: std {{[0-9]+}}, 16({{[0-9]+}})
; CHECK: stw {{[0-9]+}}, 136({{[0-9]+}})
; CHECK: bl test2

declare float @test2(float, float, float, float, float, float, float, float, float, float, float, float, float, float)
Expand Down

0 comments on commit eb421c0

Please sign in to comment.