blob: 59403b18d9d750a44e28d80a03e7af8292996aab [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -globalopt -instcombine | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: llvm-dis | grep {ret i1 true}
3
4;; check that global opt turns integers that only hold 0 or 1 into bools.
5
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00006@G = internal global i32 0 ; <i32*> [#uses=3]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00008define void @set1() {
9 store i32 0, i32* @G
10 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}
12
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000013define void @set2() {
14 store i32 1, i32* @G
15 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
Tanya Lattner4c4d0b82008-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