a71b906dcc0581ee5b4a358e685a5e275c3dff78
[oota-llvm.git] / test / Feature / undefined.ll
1
2 %X = global int undef
3
4 implementation
5
6 declare int "atoi"(sbyte *)
7
8 int %test() {
9         ret int undef
10 }
11
12 int %test2() {
13         %X = add int undef, 1
14         ret int %X
15 }