From 009b1c42aa6266385f2c37e227516b24077e6dd7 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Tue, 2 Jun 2009 17:52:33 +0000 Subject: Import LLVM, at r72732. --- test/CodeGen/ARM/str_post.ll | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/CodeGen/ARM/str_post.ll (limited to 'test/CodeGen/ARM/str_post.ll') diff --git a/test/CodeGen/ARM/str_post.ll b/test/CodeGen/ARM/str_post.ll new file mode 100644 index 000000000000..ba813805bacc --- /dev/null +++ b/test/CodeGen/ARM/str_post.ll @@ -0,0 +1,21 @@ +; RUN: llvm-as < %s | llc -march=arm | \ +; RUN: grep {strh .*\\\[.*\], #-4} | count 1 +; RUN: llvm-as < %s | llc -march=arm | \ +; RUN: grep {str .*\\\[.*\],} | count 1 + +define i16 @test1(i32* %X, i16* %A) { + %Y = load i32* %X ; [#uses=1] + %tmp1 = trunc i32 %Y to i16 ; [#uses=1] + store i16 %tmp1, i16* %A + %tmp2 = ptrtoint i16* %A to i16 ; [#uses=1] + %tmp3 = sub i16 %tmp2, 4 ; [#uses=1] + ret i16 %tmp3 +} + +define i32 @test2(i32* %X, i32* %A) { + %Y = load i32* %X ; [#uses=1] + store i32 %Y, i32* %A + %tmp1 = ptrtoint i32* %A to i32 ; [#uses=1] + %tmp2 = sub i32 %tmp1, 4 ; [#uses=1] + ret i32 %tmp2 +} -- cgit v1.3