blob: c8a1d527334cdd52b5bd3a70da6d5f7e61c8ceb6 [file] [log] [blame]
Chris Lattner2bcd6032004-11-22 19:24:11 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep and
Chris Lattner2bcd6032004-11-22 19:24:11 +00002
3sbyte %test21(sbyte %A) {
4 %C = shr sbyte %A, ubyte 7 ;; sign extend
5 %D = and sbyte %C, 1 ;; chop off sign
6 ret sbyte %D
7}
8