[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / test / Transforms / NewGVN / 2010-11-13-Simplify.ll
blob635c4b801b4cfb94946a540654668727220b78ce
1 ; RUN: opt < %s -basicaa -newgvn -S | FileCheck %s
3 declare i32 @foo(i32) readnone
5 define i1 @bar() {
6 ; CHECK-LABEL: @bar(
7   %a = call i32 @foo (i32 0) readnone
8   %b = call i32 @foo (i32 0) readnone
9   %c = and i32 %a, %b
10   %x = call i32 @foo (i32 %a) readnone
11   %y = call i32 @foo (i32 %c) readnone
12   %z = icmp eq i32 %x, %y
13   ret i1 %z
14 ; CHECK: ret i1 true
15