diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-19 09:20:23 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-19 09:20:23 +0000 |
commit | 02b985c50faa7b0f43ef4100761c633ed4b8d6d2 (patch) | |
tree | 0d21bd626b6931c8fd248b5094331f5bb53f3b54 /test/CodeGen/ARM/inlineasm.ll | |
parent | a8e2989ece6dc46df59b0768184028257f913843 (diff) | |
download | external_llvm-02b985c50faa7b0f43ef4100761c633ed4b8d6d2.zip external_llvm-02b985c50faa7b0f43ef4100761c633ed4b8d6d2.tar.gz external_llvm-02b985c50faa7b0f43ef4100761c633ed4b8d6d2.tar.bz2 |
ARM test cases contributed by Apple.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/inlineasm.ll')
-rw-r--r-- | test/CodeGen/ARM/inlineasm.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/inlineasm.ll b/test/CodeGen/ARM/inlineasm.ll new file mode 100644 index 0000000..a75c746 --- /dev/null +++ b/test/CodeGen/ARM/inlineasm.ll @@ -0,0 +1,15 @@ +; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v6 + +uint %test1(uint %tmp54) { + %tmp56 = tail call uint asm "uxtb16 $0,$1", "=r,r"( uint %tmp54 ) + ret uint %tmp56 +} + +void %test2() { + %tmp1 = call long asm "ldmia $1!, {$0, ${0:H}}", "=r,==r,1"( int** null, int* null ) + %tmp1 = cast long %tmp1 to ulong + %tmp2 = shr ulong %tmp1, ubyte 32 + %tmp3 = cast ulong %tmp2 to int + %tmp4 = call int asm "pkhbt $0, $1, $2, lsl #16", "=r,r,r"( int 0, int %tmp3 ) + ret void +} |