mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
6a4207d263
Switch the context to be SmallVectors. This allows for saving additional context when providing previous emission sites. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198665 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
788 B
ArmAsm
31 lines
788 B
ArmAsm
@ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null 2>&1 %s \
|
|
@ RUN: | FileCheck %s
|
|
|
|
.syntax unified
|
|
.thumb
|
|
|
|
.text
|
|
|
|
.global multiple_personality_disorder
|
|
.type multiple_personality_disorder,%function
|
|
multiple_personality_disorder:
|
|
.fnstart
|
|
.personality __gcc_personality_v0
|
|
.personality __gxx_personality_v0
|
|
.personality __gxx_personality_sj0
|
|
.cantunwind
|
|
|
|
@ CHECK: error: .cantunwind can't be used with .personality directive
|
|
@ CHECK: .cantunwind
|
|
@ CHECK: ^
|
|
@ CHECK: note: .personality was specified here
|
|
@ CHECK: .personality __gcc_personality_v0
|
|
@ CHECK: ^
|
|
@ CHECK: note: .personality was specified here
|
|
@ CHECK: .personality __gxx_personality_v0
|
|
@ CHECK: ^
|
|
@ CHECK: note: .personality was specified here
|
|
@ CHECK: .personality __gxx_personality_sj0
|
|
@ CHECK: ^
|
|
|