llvm-6502/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll
Reid Spencer eacb7020ec For PR950:
Update the test suite to accommodate the change from signed integer types
to signless integer types. The changes were of only a few kinds:

1. Make sure llvm-upgrade is run on the source which does the bulk of the
   changes automatically.

2. Change things like "grep 'int'" to "grep 'i32'"

3. In several tests bitcasting caused the same name to be reused in the
   same type plane. These had to be manually fixed. The fix was (generally)
   to leave the bitcast and provide the instruction with a new name. This
   should not affect the semantics of the test. In a few cases, the
   bitcasts were known to be superfluous and irrelevant to the test case
   so they were removed.

4. One test case uses a bytecode file which needed to be updated to the
   latest bytecode format.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32789 91177308-0d34-0410-b5e6-96231b3b80d8
2006-12-31 06:02:00 +00:00

34 lines
985 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
; RUN: lli %t.bc > /dev/null
; This testcase exposes a bug in the local register allocator where it runs out
; of registers (due to too many overlapping live ranges), but then attempts to
; use the ESP register (which is not allocatable) to hold a value.
int %main(uint %A) {
%Ap2 = alloca uint, uint %A ; ESP gets used again...
%B = add uint %A, 1 ; Produce lots of overlapping live ranges
%C = add uint %A, 2
%D = add uint %A, 3
%E = add uint %A, 4
%F = add uint %A, 5
%G = add uint %A, 6
%H = add uint %A, 7
%I = add uint %A, 8
%J = add uint %A, 9
%K = add uint %A, 10
store uint %A, uint *%Ap2 ; Uses of all of the values
store uint %B, uint *%Ap2
store uint %C, uint *%Ap2
store uint %D, uint *%Ap2
store uint %E, uint *%Ap2
store uint %F, uint *%Ap2
store uint %G, uint *%Ap2
store uint %H, uint *%Ap2
store uint %I, uint *%Ap2
store uint %J, uint *%Ap2
store uint %K, uint *%Ap2
ret int 0
}