blob: 5a34a9c4dabdb0cd5873c894c0abe6534be0a46e [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -globalopt -instcombine | \
Chandler Carruth4177e6f2012-07-02 12:47:22 +00002; RUN: llvm-dis | grep "ret i1 true"
Chris Lattneref07cc52004-12-12 05:52:12 +00003
4;; check that global opt turns integers that only hold 0 or 1 into bools.
5
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00006@G = internal global i32 0 ; <i32*> [#uses=3]
Chris Lattneref07cc52004-12-12 05:52:12 +00007
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00008define void @set1() {
9 store i32 0, i32* @G
10 ret void
Chris Lattneref07cc52004-12-12 05:52:12 +000011}
12
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000013define void @set2() {
14 store i32 1, i32* @G
15 ret void
Chris Lattneref07cc52004-12-12 05:52:12 +000016}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000017
18define i1 @get() {
19 %A = load i32* @G ; <i32> [#uses=1]
20 %C = icmp slt i32 %A, 2 ; <i1> [#uses=1]
21 ret i1 %C
22}
23