repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libstdc++: Make some _Hashtable members inline
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
asm6.C
blob
96ef9d385a88e38a8504d34a174c73b5b2e7a983
1
struct A
2
{
3
~A();
4
};
5
int foo(A);
6
void bar()
7
{
8
A a;
9
asm("" : : "r"(foo(a)) );//<-- cleanup needed here.
10
}
11