mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
205b641954
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. llvm-svn: 81537
21 lines
827 B
LLVM
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
|
|
}
|
|
|