brintos

brintos / llvm-project-archived public Read only

0
0
Text · 829 B · cf9f8b0 Raw
23 lines · plain
1; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s2 3define i16 @test1(ptr %X, ptr %A) {4; CHECK-LABEL: test1:5; CHECK: strh {{.*}}[{{.*}}], #-46        %Y = load i32, ptr %X               ; <i32> [#uses=1]7        %tmp1 = trunc i32 %Y to i16             ; <i16> [#uses=1]8        store i16 %tmp1, ptr %A9        %tmp2 = ptrtoint ptr %A to i16         ; <i16> [#uses=1]10        %tmp3 = sub i16 %tmp2, 4                ; <i16> [#uses=1]11        ret i16 %tmp312}13 14define i32 @test2(ptr %X, ptr %A) {15; CHECK-LABEL: test2:16; CHECK: str {{.*}}[{{.*}}],17        %Y = load i32, ptr %X               ; <i32> [#uses=1]18        store i32 %Y, ptr %A19        %tmp1 = ptrtoint ptr %A to i32         ; <i32> [#uses=1]20        %tmp2 = sub i32 %tmp1, 4                ; <i32> [#uses=1]21        ret i32 %tmp222}23