linux-packaging-mono/external/llvm/test/MC/ARM/eh-directive-pad-diagnostics.s
Xamarin Public Jenkins (auto-signing) 8625704ad8 Imported Upstream version 5.18.0.179
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
2018-10-25 08:34:57 +00:00

40 lines
923 B
ArmAsm

@ RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2> %t
@ RUN: FileCheck < %t %s
@ Check the diagnostics for .pad directive.
.syntax unified
.text
@-------------------------------------------------------------------------------
@ TEST1: .pad before .fnstart
@-------------------------------------------------------------------------------
.globl func1
.align 2
.type func1,%function
.pad #0
@ CHECK: error: .fnstart must precede .pad directive
@ CHECK: .pad #0
@ CHECK: ^
.fnstart
func1:
.fnend
@-------------------------------------------------------------------------------
@ TEST2: .pad after .handlerdata
@-------------------------------------------------------------------------------
.globl func2
.align 2
.type func2,%function
.fnstart
func2:
.handlerdata
.pad #0
@ CHECK: error: .pad must precede .handlerdata directive
@ CHECK: .pad #0
@ CHECK: ^
.fnend