mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-07 12:30:44 +00:00
2835413343
Disable post-ra scheduler for perturbed tests to appease the bots and to preserve the history of the tests. http://reviews.llvm.org/D15652 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256158 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
513 B
LLVM
16 lines
513 B
LLVM
; RUN: llc < %s -mtriple=aarch64-apple-ios -disable-post-ra | FileCheck %s
|
|
|
|
; Part of PR21549: going through the stack isn't ideal but is correct.
|
|
|
|
define i16 @test_bitcast_v2i8_to_i16(<2 x i8> %a) {
|
|
; CHECK-LABEL: test_bitcast_v2i8_to_i16
|
|
; CHECK: mov.s [[WREG_HI:w[0-9]+]], v0[1]
|
|
; CHECK-NEXT: fmov [[WREG_LO:w[0-9]+]], s0
|
|
; CHECK-NEXT: strb [[WREG_HI]], [sp, #15]
|
|
; CHECK-NEXT: strb [[WREG_LO]], [sp, #14]
|
|
; CHECK-NEXT: ldrh w0, [sp, #14]
|
|
|
|
%aa = bitcast <2 x i8> %a to i16
|
|
ret i16 %aa
|
|
}
|