repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
m68k-rtdcall.cpp
blob
31f4bceafd95524f9aa42b56b08cb59a20fe0034
1
// RUN: %clang_cc1 -triple m68k-linux-gnu -fsyntax-only %s
2
3
class
A
{
4
public
:
5
void
__attribute__
((
m68k_rtd
))
member
() {}
6
};
7
8
void
test
() {
9
A a
;
10
a
.
member
();
11
12
auto
f
= [](
int
b
)
__attribute__
((
m68k_rtd
)) {};
13
f
(
87
);
14
};