mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-15 07:59:50 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
452 B
LLVM
20 lines
452 B
LLVM
; SetCC on boolean values was not implemented!
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop -die | llvm-dis | not grep 'set'
|
|
|
|
bool "test1"() {
|
|
%A = setle bool true, false
|
|
%B = setge bool true, false
|
|
%C = setlt bool false, true
|
|
%D = setgt bool true, false
|
|
%E = seteq bool false, false
|
|
%F = setne bool false, true
|
|
%G = and bool %A, %B
|
|
%H = and bool %C, %D
|
|
%I = and bool %E, %F
|
|
%J = and bool %G, %H
|
|
%K = and bool %I, %J
|
|
ret bool %K
|
|
}
|
|
|