mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-04 11:17:31 +00:00
c0d7186872
Fixing triple format in the tests added for the branch label fix for Thumb Targets. Also recommitting previously approved patch, see https://reviews.llvm.org/D30943. Reviewed by: samparker Differential Revision: https://reviews.llvm.org/D30987 llvm-svn: 298056
16 lines
553 B
ArmAsm
16 lines
553 B
ArmAsm
@ RUN: llvm-mc -mcpu=cortex-a9 -triple armv7-arm-none-eabi -filetype obj -o - %s \
|
|
@ RUN: | llvm-objdump -mcpu=cortex-a9 -triple armv7-arm-none-eabi -d - \
|
|
@ RUN: | FileCheck %s -check-prefix CHECK-ARM
|
|
|
|
@ RUN: llvm-mc -mcpu=cortex-m3 -triple thumbv7m-arm-none-eabi -filetype obj -o - %s \
|
|
@ RUN: | llvm-objdump -mcpu=cortex-m3 -triple thumbv7m-arm-none-eabi -d - \
|
|
@ RUN: | FileCheck %s -check-prefix CHECK-THUMB
|
|
|
|
b.w .Lbranch
|
|
@ CHECK-ARM: b #4 <$a.0+0xC>
|
|
@ CHECK-THUMB: b.w #8 <$t.0+0xC>
|
|
adds r0, r1, #42
|
|
adds r1, r2, #42
|
|
.Lbranch:
|
|
movs r2, r3
|