bolt/deps/llvm-18.1.8/clang/test/SemaCXX/m68k-rtdcall.cpp
2025-02-14 19:21:04 +01:00

14 lines
226 B
C++

// RUN: %clang_cc1 -triple m68k-linux-gnu -fsyntax-only %s
class A {
public:
void __attribute__((m68k_rtd)) member() {}
};
void test() {
A a;
a.member();
auto f = [](int b) __attribute__((m68k_rtd)) {};
f(87);
};