mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
2aabd0722d
Upgrade to use new Tcl exec based test harness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36062 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
444 B
LLVM
24 lines
444 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt -instcombine | \
|
|
; RUN: llvm-dis | grep {ret i1 true}
|
|
|
|
;; check that global opt turns integers that only hold 0 or 1 into bools.
|
|
|
|
%G = internal global int 0 ;; This only holds 0 or 1.
|
|
|
|
implementation
|
|
|
|
void %set1() {
|
|
store int 0, int* %G
|
|
ret void
|
|
}
|
|
void %set2() {
|
|
store int 1, int* %G
|
|
ret void
|
|
}
|
|
|
|
bool %get() {
|
|
%A = load int* %G
|
|
%C = setlt int %A, 2 ;; always true
|
|
ret bool %C
|
|
}
|