brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · f9949f7 Raw
27 lines · c
1// RUN: %clang_cc1 %s -triple arm-none-eabi -verify -fsyntax-only2// RUN: %clang_cc1 %s -triple arm-none-eabi -target-feature +vfp2 -verify -fsyntax-only3 4 5#if !defined(__ARM_FP)6__attribute__((interrupt_save_fp("IRQ"))) void float_irq(void); // expected-warning {{`interrupt_save_fp` only applies to targets that have a VFP unit enabled for this compilation; this will be treated as a regular `interrupt` attribute}}7#else // defined(__ARM_FP)8__attribute__((interrupt_save_fp("irq"))) void foo1(void) {} // expected-warning {{'interrupt_save_fp' attribute argument not supported: irq}}9__attribute__((interrupt_save_fp(IRQ))) void foo(void) {} // expected-error {{'interrupt_save_fp' attribute requires a string}}10__attribute__((interrupt_save_fp("IRQ", 1))) void foo2(void) {} // expected-error {{'interrupt_save_fp' attribute takes no more than 1 argument}}11__attribute__((interrupt_save_fp("IRQ"))) void foo3(void) {}12__attribute__((interrupt_save_fp("FIQ"))) void foo4(void) {}13__attribute__((interrupt_save_fp("SWI"))) void foo5(void) {}14__attribute__((interrupt_save_fp("ABORT"))) void foo6(void) {}15__attribute__((interrupt_save_fp("UNDEF"))) void foo7(void) {}16__attribute__((interrupt_save_fp)) void foo8(void) {}17__attribute__((interrupt_save_fp())) void foo9(void) {}18__attribute__((interrupt_save_fp(""))) void foo10(void) {}19 20__attribute__((interrupt_save_fp("IRQ"))) void callee(void) {}21 22void caller(void)23{24    callee(); // expected-error {{interrupt service routine cannot be called directly}}25}26#endif // __ARM_FP27