mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
37bf232609
respectively. llvm-svn: 97531
10 lines
207 B
LLVM
10 lines
207 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 = fadd float 0.0, undef
|
|
%c = fadd double 0.0, undef
|
|
ret i32 0
|
|
}
|