mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
10 lines
205 B
LLVM
10 lines
205 B
LLVM
|
; RUN: llvm-as %s -o %t.bc
|
||
|
; RUN: lli -force-interpreter=true %t.bc
|
||
|
|
||
|
define i32 @main() {
|
||
|
%a = add i32 0, undef
|
||
|
%b = add float 0.0, undef
|
||
|
%c = add double 0.0, undef
|
||
|
ret i32 0
|
||
|
}
|