mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
f2f6ce65b7
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
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
|
|
}
|
|
|