1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll
2007-01-17 07:59:14 +00:00

13 lines
278 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
; RUN: lli %t.bc > /dev/null
; This testcase failed to work because two variable sized allocas confused the
; local register allocator.
int %main(uint %X) {
%A = alloca uint, uint %X
%B = alloca float, uint %X
ret int 0
}