1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Feature/undefined.ll

16 lines
153 B
LLVM
Raw Normal View History

%X = global int undef
implementation
declare int "atoi"(sbyte *)
int %test() {
ret int undef
}
int %test2() {
%X = add int undef, 1
ret int %X
}