Sign in
swiftshader
/
SwiftShader
/
9a6c28bcd9a718333aa3844e972f2ea840fe3101
/
.
/
third_party
/
LLVM
/
test
/
Transforms
/
InstCombine
/
2004-11-22-Missed-and-fold.ll
blob: b851b98c34dbf3619b3ca3db215a3b9875954c45 [
file
] [
log
] [
blame
]
; RUN: opt < %s -instcombine -S | not grep and
define
i8
@test21
(
i8
%A
)
{
;; sign extend
%C
=
ashr
i8
%A
,
7
; <i8> [#uses=1]
;; chop off sign
%D
=
and
i8
%C
,
1
; <i8> [#uses=1]
ret
i8
%D
}