mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
8617b3579b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3575 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
474 B
LLVM
23 lines
474 B
LLVM
; SetCC on boolean values was not implemented!
|
|
|
|
; RUN: if as < %s | opt -constprop -die | dis | grep 'set'
|
|
; RUN: then exit 1
|
|
; RUN: else exit 0
|
|
; RUN: fi
|
|
|
|
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
|
|
}
|
|
|