Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / GVN / 2010-11-13-Simplify.ll
blobaabd083d352e1f62909c6763e3c3001647ec1d01
1 ; RUN: opt < %s -passes=gvn -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