repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[gcn] mkoffload.cc: Print fatal error if -march has no multilib but generic has
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
dwarf2
/
default-arg1.C
blob
d8edffe1a8c330ecac0bb9b7f16233c6bc42253f
1
// PR c++/65821
2
// { dg-options "-gdwarf-2 -dA" }
3
4
int b = 12;
5
6
inline void foo(const int &x = (b+3))
7
{
8
b = x;
9
}
10
11
int main()
12
{
13
foo(); // { dg-final { scan-assembler-not "default-arg1.C:6" } }
14
}