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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr37353.c
blob
07d73d0ebe7b33f9d5b5af97838af01ff5797009
1
/* PR tree-optimization/37353 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
extern
double
exp
(
double
);
6
7
#define A exp (arg);
8
#define B A A A A A A A A A A
9
#define C B B B B B B B B B B
10
11
void
12
foo
(
double
arg
)
13
{
14
C
15
}