1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-16 16:31:04 +00:00
2006-12-02 04:23:10 +00:00

9 lines
224 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 &&
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep add
bool %X(int %X) {
%Y = add int %X, 14
%Z = setne int %Y, 12345
ret bool %Z
}