mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
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
|
||
|
}
|