1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00
llvm-mirror/test/MC/ARM/eh-directive-movsp.s
Elvina Yakubova 6cd76408bf [llvm-readobj] Update tests because of changes in llvm-readobj behavior
This patch updates tests using llvm-readobj and llvm-readelf, because
soon reading from stdin will be achievable only via a '-' as described
here: https://bugs.llvm.org/show_bug.cgi?id=46400. Patch with changes to
llvm-readobj behavior is here: https://reviews.llvm.org/D83704

Differential Revision: https://reviews.llvm.org/D83912

Reviewed by: jhenderson, MaskRay, grimar
2020-07-20 10:39:04 +01:00

46 lines
742 B
ArmAsm

@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \
@ RUN: | llvm-readobj -S --sd - \
@ RUN: | FileCheck %s
.syntax unified
.thumb
.section .duplicate
.global duplicate
.type duplicate,%function
duplicate:
.fnstart
.setfp sp, sp, #8
add sp, sp, #8
.movsp r11
mov r11, sp
.fnend
@ CHECK: Section {
@ CHECK: Name: .ARM.exidx.duplicate
@ CHECK: SectionData (
@ CHECK: 0000: 00000000 B09B9B80
@ CHECK: )
@ CHECK: }
.section .squash
.global squash
.type squash,%function
squash:
.fnstart
.movsp ip
mov ip, sp
.save {fp, ip, lr}
stmfd sp!, {fp, ip, lr}
.fnend
@ CHECK: Section {
@ CHECK: Name: .ARM.exidx.squash
@ CHECK: SectionData (
@ CHECK: 0000: 00000000 9C808580
@ CHECK: )
@ CHECK: }