OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PR tree-optimization/53239
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
vrp3.h
1
struct R
2
{
3
long long r1, r2;
4
void copy (R const &r) { r1 = r.r1; r2 = r.r2; }
5
R ();
6
explicit R (int, int);
7
R (R const &r) { copy (r); }
8
static int compare (R const &, R const &);
9
};