You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
351 B
13 lines
351 B
; RUN: llc -O0 -mtriple armv7-- -stop-before=finalize-isel < %s
|
|
; RUN: llc -O0 -mtriple armv7-- -stop-before=finalize-isel -global-isel < %s
|
|
|
|
; CHECK: PKHBT
|
|
|
|
define arm_aapcscc i32 @pkh(i32 %x, i32 %y) {
|
|
%andx = and i32 %x, 65535
|
|
%shl = shl i32 %y, 1
|
|
%andy = and i32 %shl, 4294901760 ; same as -65536
|
|
%or = or i32 %andx, %andy
|
|
ret i32 %or
|
|
}
|