1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 22:42:46 +02:00
llvm-mirror/test/Feature/undefined.ll
Chris Lattner 7900435c81 testcases for undefined and unreachable
llvm-svn: 17058
2004-10-16 18:24:11 +00:00

16 lines
153 B
LLVM

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