mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
e6c3a5f724
r213378 improved f16 bitcasts, so that they go directly through subregs, instead of through the stack. That code now causes an assertion failure for bitcasts from other 16-bits types (most importantly v2i8). Correct that by doing the custom lowering for i16 bitcasts only when the input is an f16. Part of PR21549. Differential Revision: http://reviews.llvm.org/D6307 llvm-svn: 223074
16 lines
496 B
LLVM
16 lines
496 B
LLVM
; RUN: llc < %s -mtriple=aarch64-apple-ios | 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
|
|
}
|