llvm-6502/test/Transforms/ConstProp/2002-09-03-SetCC-Bools.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
input filename so that opt doesn't print the input filename in the
output so that grep lines in the tests don't unintentionally match
strings in the input filename.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-11 18:01:28 +00:00

21 lines
827 B
LLVM

; SetCC on boolean values was not implemented!
; RUN: opt < %s -constprop -die -S | \
; RUN: not grep set
define i1 @test1() {
%A = icmp ule i1 true, false ; <i1> [#uses=1]
%B = icmp uge i1 true, false ; <i1> [#uses=1]
%C = icmp ult i1 false, true ; <i1> [#uses=1]
%D = icmp ugt i1 true, false ; <i1> [#uses=1]
%E = icmp eq i1 false, false ; <i1> [#uses=1]
%F = icmp ne i1 false, true ; <i1> [#uses=1]
%G = and i1 %A, %B ; <i1> [#uses=1]
%H = and i1 %C, %D ; <i1> [#uses=1]
%I = and i1 %E, %F ; <i1> [#uses=1]
%J = and i1 %G, %H ; <i1> [#uses=1]
%K = and i1 %I, %J ; <i1> [#uses=1]
ret i1 %K
}