blob: 8702c5e343c8fb85dc40904116580f4dd0d3a331 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep and
; XFAIL: *
sbyte %test21(sbyte %A) {
%C = shr sbyte %A, ubyte 7 ;; sign extend
%D = and sbyte %C, 1 ;; chop off sign
ret sbyte %D
}
|