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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
pr35310
/
main.cpp
blob
a8e8a5c737a01d9e642a0b2a39da580245cd3cc4
1
#include <stdio.h>
2
3
class
A
{
4
public
:
5
int
__attribute__
((
abi_tag
(
"cxx11"
)))
test_abi_tag
() {
6
return
1
;
7
}
8
int
test_asm_name
()
asm
(
"A_test_asm"
) {
9
return
2
;
10
}
11
};
12
13
int
main
(
int
argc
,
char
**
argv
) {
14
A a
;
15
// Break here
16
a
.
test_abi_tag
();
17
a
.
test_asm_name
();
18
return
0
;
19
}