YouCompleteMe/cpp/llvm/test/Transforms/InstCombine/apint-cast-cast-to-and.ll

9 lines
183 B
LLVM
Raw Normal View History

2012-07-05 20:51:06 -04:00
; RUN: opt < %s -instcombine -S | not grep i41
define i61 @test1(i61 %X) {
%Y = trunc i61 %X to i41 ;; Turn i61o an AND
%Z = zext i41 %Y to i61
ret i61 %Z
}