Added the eon and perlbmk benchmarks.
[oota-llvm.git] / test / ExecutionEngine / 2003-08-15-AllocaAssertion.ll
1 ; This testcase failed to work because two variable sized allocas confused the
2 ; local register allocator.
3
4 int %main(uint %X) {
5   %A = alloca uint, uint %X
6
7   %B = alloca float, uint %X
8   ret int 0
9 }