diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-23 22:47:58 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-23 22:47:58 +0000 |
commit | 36b74471c84f11626cbb33ecf5df78e5d3baac7e (patch) | |
tree | 2c2e2122397520e257410e9f0df91f51e81fac1f /llvm/test/CodeGen/ARM/ldr_ext.ll | |
parent | 020f4f2bea0c6342de7c76873e6515bd61f56567 (diff) | |
download | bcm5719-llvm-36b74471c84f11626cbb33ecf5df78e5d3baac7e.tar.gz bcm5719-llvm-36b74471c84f11626cbb33ecf5df78e5d3baac7e.zip |
Thumb test cases.
llvm-svn: 33468
Diffstat (limited to 'llvm/test/CodeGen/ARM/ldr_ext.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/ldr_ext.ll | 46 |
1 files changed, 25 insertions, 21 deletions
diff --git a/llvm/test/CodeGen/ARM/ldr_ext.ll b/llvm/test/CodeGen/ARM/ldr_ext.ll index 767f035b4be..739447c5705 100644 --- a/llvm/test/CodeGen/ARM/ldr_ext.ll +++ b/llvm/test/CodeGen/ARM/ldr_ext.ll @@ -1,29 +1,33 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "ldrb" | wc -l | grep 1 && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "ldrsb" | wc -l | grep 1 && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "ldrh" | wc -l | grep 1 && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep "ldrsh" | wc -l | grep 1 +; RUN: llvm-as < %s | llc -march=arm && +; RUN: llvm-as < %s | llc -march=arm | grep "ldrb" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm | grep "ldrh" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm | grep "ldrsb" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm | grep "ldrsh" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep "ldrb" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep "ldrh" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep "ldrsb" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep "ldrsh" | wc -l | grep 1 -int %test1(ubyte* %v) { - %tmp = load ubyte* %v - %tmp1 = cast ubyte %tmp to int - ret int %tmp1 +define i32 %test1(i8* %v.pntr.s0.u1) { + %tmp.u = load i8* %v.pntr.s0.u1 + %tmp1.s = zext i8 %tmp.u to i32 + ret i32 %tmp1.s } -int %test2(ushort* %v) { - %tmp = load ushort* %v - %tmp1 = cast ushort %tmp to int - ret int %tmp1 +define i32 %test2(i16* %v.pntr.s0.u1) { + %tmp.u = load i16* %v.pntr.s0.u1 + %tmp1.s = zext i16 %tmp.u to i32 + ret i32 %tmp1.s } -int %test3(sbyte* %v) { - %tmp = load sbyte* %v - %tmp1 = cast sbyte %tmp to int - ret int %tmp1 +define i32 %test3(i8* %v.pntr.s1.u0) { + %tmp.s = load i8* %v.pntr.s1.u0 + %tmp1.s = sext i8 %tmp.s to i32 + ret i32 %tmp1.s } -int %test4(short* %v) { - %tmp = load short* %v - %tmp1 = cast short %tmp to int - ret int %tmp1 +define i32 %test4() { + %tmp.s = load i16* null + %tmp1.s = sext i16 %tmp.s to i32 + ret i32 %tmp1.s } |