diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 06:02:00 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 06:02:00 +0000 |
| commit | deb4d5ab46cff6109a2f296bb9474e964da2ef46 (patch) | |
| tree | cfe9023c2d2687932470ed692b1a83622e30b79d /llvm/test/Regression/ExecutionEngine | |
| parent | e63b6518fa257f47f8b46c116ac683616d74cb36 (diff) | |
| download | bcm5719-llvm-deb4d5ab46cff6109a2f296bb9474e964da2ef46.tar.gz bcm5719-llvm-deb4d5ab46cff6109a2f296bb9474e964da2ef46.zip | |
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.
llvm-svn: 32789
Diffstat (limited to 'llvm/test/Regression/ExecutionEngine')
14 files changed, 36 insertions, 36 deletions
diff --git a/llvm/test/Regression/ExecutionEngine/2003-01-04-PhiTest.ll b/llvm/test/Regression/ExecutionEngine/2003-01-04-PhiTest.ll index c8c76ee6e12..45af8300a64 100644 --- a/llvm/test/Regression/ExecutionEngine/2003-01-04-PhiTest.ll +++ b/llvm/test/Regression/ExecutionEngine/2003-01-04-PhiTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null int %main() { diff --git a/llvm/test/Regression/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/llvm/test/Regression/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll index 6b1b0abcbab..1d9ba77145b 100644 --- a/llvm/test/Regression/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll +++ b/llvm/test/Regression/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null target endian = little diff --git a/llvm/test/Regression/ExecutionEngine/2003-06-05-PHIBug.ll b/llvm/test/Regression/ExecutionEngine/2003-06-05-PHIBug.ll index 6e4e5e1bac1..8c1aaba27df 100644 --- a/llvm/test/Regression/ExecutionEngine/2003-06-05-PHIBug.ll +++ b/llvm/test/Regression/ExecutionEngine/2003-06-05-PHIBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; Testcase distilled from 256.bzip2. diff --git a/llvm/test/Regression/ExecutionEngine/2003-08-15-AllocaAssertion.ll b/llvm/test/Regression/ExecutionEngine/2003-08-15-AllocaAssertion.ll index 80b51532d8e..adc82206b28 100644 --- a/llvm/test/Regression/ExecutionEngine/2003-08-15-AllocaAssertion.ll +++ b/llvm/test/Regression/ExecutionEngine/2003-08-15-AllocaAssertion.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; 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 diff --git a/llvm/test/Regression/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll b/llvm/test/Regression/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll index 1a7e05e213e..4d1d0452dba 100644 --- a/llvm/test/Regression/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll +++ b/llvm/test/Regression/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; 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 diff --git a/llvm/test/Regression/ExecutionEngine/hello.ll b/llvm/test/Regression/ExecutionEngine/hello.ll index 0f62dcbb487..ea2f9a4cce5 100644 --- a/llvm/test/Regression/ExecutionEngine/hello.ll +++ b/llvm/test/Regression/ExecutionEngine/hello.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null %.LC0 = internal global [12 x sbyte] c"Hello World\00" diff --git a/llvm/test/Regression/ExecutionEngine/hello2.ll b/llvm/test/Regression/ExecutionEngine/hello2.ll index 92aa5f19184..b186c52e2b5 100644 --- a/llvm/test/Regression/ExecutionEngine/hello2.ll +++ b/llvm/test/Regression/ExecutionEngine/hello2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/Regression/ExecutionEngine/simplesttest.ll b/llvm/test/Regression/ExecutionEngine/simplesttest.ll index 207229f5996..1f578d29f27 100644 --- a/llvm/test/Regression/ExecutionEngine/simplesttest.ll +++ b/llvm/test/Regression/ExecutionEngine/simplesttest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/Regression/ExecutionEngine/simpletest.ll b/llvm/test/Regression/ExecutionEngine/simpletest.ll index 47a5c64038f..68b70446272 100644 --- a/llvm/test/Regression/ExecutionEngine/simpletest.ll +++ b/llvm/test/Regression/ExecutionEngine/simpletest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null implementation diff --git a/llvm/test/Regression/ExecutionEngine/test-loadstore.ll b/llvm/test/Regression/ExecutionEngine/test-loadstore.ll index ac558b01855..8a4b7933d18 100644 --- a/llvm/test/Regression/ExecutionEngine/test-loadstore.ll +++ b/llvm/test/Regression/ExecutionEngine/test-loadstore.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/Regression/ExecutionEngine/test-logical.ll b/llvm/test/Regression/ExecutionEngine/test-logical.ll index bad6a9ab85d..86af2e224fc 100644 --- a/llvm/test/Regression/ExecutionEngine/test-logical.ll +++ b/llvm/test/Regression/ExecutionEngine/test-logical.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/Regression/ExecutionEngine/test-malloc.ll b/llvm/test/Regression/ExecutionEngine/test-malloc.ll index 69c412abdcf..7a7f245bf5c 100644 --- a/llvm/test/Regression/ExecutionEngine/test-malloc.ll +++ b/llvm/test/Regression/ExecutionEngine/test-malloc.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/Regression/ExecutionEngine/test-ret.ll b/llvm/test/Regression/ExecutionEngine/test-ret.ll index 6fbaf717d75..e20691277fd 100644 --- a/llvm/test/Regression/ExecutionEngine/test-ret.ll +++ b/llvm/test/Regression/ExecutionEngine/test-ret.ll @@ -1,16 +1,16 @@ -; RUN: llvm-as -f %s -o %t.bc +; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; test return instructions -void %test() { ret void } -sbyte %test() { ret sbyte 1 } -ubyte %test() { ret ubyte 1 } -short %test() { ret short -1 } -ushort %test() { ret ushort 65535 } +void %test1() { ret void } +sbyte %test2() { ret sbyte 1 } +ubyte %test3() { ret ubyte 1 } +short %test4() { ret short -1 } +ushort %test5() { ret ushort 65535 } int %main() { ret int 0 } -uint %test() { ret uint 4 } -long %test() { ret long 0 } -ulong %test() { ret ulong 0 } -float %test() { ret float 1.0 } -double %test() { ret double 2.0 } +uint %test6() { ret uint 4 } +long %test7() { ret long 0 } +ulong %test8() { ret ulong 0 } +float %test9() { ret float 1.0 } +double %test10() { ret double 2.0 } diff --git a/llvm/test/Regression/ExecutionEngine/test-shift.ll b/llvm/test/Regression/ExecutionEngine/test-shift.ll index 22e46788797..2549f346f20 100644 --- a/llvm/test/Regression/ExecutionEngine/test-shift.ll +++ b/llvm/test/Regression/ExecutionEngine/test-shift.ll @@ -6,35 +6,35 @@ int %main() { %shamt = add ubyte 0, 1 ; Left shifts... - %t1 = shl int 1, ubyte %shamt - %t2 = shl int 1, ubyte 4 + %t1.s = shl int 1, ubyte %shamt + %t2.s = shl int 1, ubyte 4 %t1 = shl uint 1, ubyte %shamt %t2 = shl uint 1, ubyte 5 ;%t1 = shl long 1, ubyte %shamt - %t2 = shl long 1, ubyte 4 + %t2.s = shl long 1, ubyte 4 ;%t1 = shl ulong 1, ubyte %shamt %t2 = shl ulong 1, ubyte 5 ; Right shifts... - %tr1 = shr int 1, ubyte %shamt - %tr2 = shr int 1, ubyte 4 + %tr1.s = shr int 1, ubyte %shamt + %tr2.s = shr int 1, ubyte 4 %tr1 = shr uint 1, ubyte %shamt %tr2 = shr uint 1, ubyte 5 ;%tr1 = shr long 1, ubyte %shamt - %tr1 = shr long 1, ubyte 4 - %tr2 = shr long 1, ubyte %shamt - %tr3 = shl long 1, ubyte 4 - %tr4 = shl long 1, ubyte %shamt + %tr1.l = shr long 1, ubyte 4 + %tr2.l = shr long 1, ubyte %shamt + %tr3.l = shl long 1, ubyte 4 + %tr4.l = shl long 1, ubyte %shamt ;%t1 = shr ulong 1, ubyte %shamt - %tr1 = shr ulong 1, ubyte 5 - %tr2 = shr ulong 1, ubyte %shamt - %tr3 = shl ulong 1, ubyte 5 - %tr4 = shl ulong 1, ubyte %shamt + %tr1.u = shr ulong 1, ubyte 5 + %tr2.u = shr ulong 1, ubyte %shamt + %tr3.u = shl ulong 1, ubyte 5 + %tr4.u = shl ulong 1, ubyte %shamt ret int 0 } |

