Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / m68k-rtdcall.cpp
blob31f4bceafd95524f9aa42b56b08cb59a20fe0034
1 // RUN: %clang_cc1 -triple m68k-linux-gnu -fsyntax-only %s
3 class A {
4 public:
5 void __attribute__((m68k_rtd)) member() {}
6 };
8 void test() {
9 A a;
10 a.member();
12 auto f = [](int b) __attribute__((m68k_rtd)) {};
13 f(87);