xref: /aosp_15_r20/external/llvm/test/ExecutionEngine/2010-01-15-UndefValue.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: %lli -force-interpreter=true %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Workerdefine i32 @main() {
4*9880d681SAndroid Build Coastguard Worker       %a = add i32 0, undef
5*9880d681SAndroid Build Coastguard Worker       %b = fadd float 0.0, undef
6*9880d681SAndroid Build Coastguard Worker       %c = fadd double 0.0, undef
7*9880d681SAndroid Build Coastguard Worker       ret i32 0
8*9880d681SAndroid Build Coastguard Worker}
9