mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 20:06:46 +00:00
32 lines
534 B
LLVM
32 lines
534 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {zext } | count 0
|
||
|
|
||
|
define i32 @a(i1 %x) {
|
||
|
entry:
|
||
|
%y = zext i1 %x to i32
|
||
|
%res = add i32 %y, 1
|
||
|
ret i32 %res
|
||
|
}
|
||
|
|
||
|
define i32 @b(i1 %x) {
|
||
|
entry:
|
||
|
%y = zext i1 %x to i32
|
||
|
%res = add i32 %y, -1
|
||
|
ret i32 %res
|
||
|
}
|
||
|
|
||
|
define i32 @c(i1 %x) {
|
||
|
entry:
|
||
|
%y = zext i1 %x to i32
|
||
|
%res = sub i32 0, %y
|
||
|
ret i32 %res
|
||
|
}
|
||
|
|
||
|
define i32 @d(i1 %x) {
|
||
|
entry:
|
||
|
%y = zext i1 %x to i32
|
||
|
%res = sub i32 3, %y
|
||
|
ret i32 %res
|
||
|
}
|
||
|
|
||
|
|