Sign in
swiftshader
/
SwiftShader
/
4e8044d9c2090e965f96f3a6f24503cb91be54a4
/
.
/
third_party
/
LLVM
/
test
/
CodeGen
/
X86
/
2008-02-14-BitMiscompile.ll
blob: 1983f1d19c6f8485d2daadc1853860993bda8b62 [
file
] [
log
] [
blame
]
; RUN: llc < %s -march=x86 | grep and
define
i32
@test
(
i1
%A
)
{
%B
=
zext
i1
%A
to
i32
; <i32> [#uses=1]
%C
=
sub
i32
0
,
%B
; <i32> [#uses=1]
%D
=
and
i32
%C
,
255
; <i32> [#uses=1]
ret
i32
%D
}