[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / InstCombine / 2004-11-22-Missed-and-fold.ll
blob730fdc26aabd56d7182012359540be907753b7d0
1 ; RUN: opt < %s -instcombine -S | not grep and
3 define i8 @test21(i8 %A) {
4         ;; sign extend
5         %C = ashr i8 %A, 7              ; <i8> [#uses=1]
6         ;; chop off sign
7         %D = and i8 %C, 1               ; <i8> [#uses=1]
8         ret i8 %D