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
predicate aware uninitialized analysis
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
register1.C
blob
3be2e652502fa10675a9389875ec8a7d10fdb2cd
1
// PR c++/23839
2
3
class C
4
{
5
int i;
6
public:
7
C(int j) : i(j) { }
8
operator int() { return i; }
9
};
10
11
C f (register C x)
12
{
13
return x + 31;
14
}