mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 16:40:15 +00:00
aa7c7ca541
llvm-svn: 7909
10 lines
201 B
LLVM
10 lines
201 B
LLVM
; 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
|
|
}
|