While working on the pool allocator, I noticed that basicaa is failing a scary
[oota-llvm.git] / test / ExecutionEngine / test-ret.ll
1 ; test return instructions
2
3 void %test() { ret void }
4 sbyte %test() { ret sbyte 1 }
5 ubyte %test() { ret ubyte 1 }
6 short %test() { ret short -1 }
7 ushort %test() { ret ushort 65535 }
8 int  %main() { ret int 0 }
9 uint %test() { ret uint 4 }
10 long %test() { ret long 0 }
11 ulong %test() { ret ulong 0 }
12 float %test() { ret float 1.0 }
13 double %test() { ret double 2.0 }