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
* ru.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr53085.C
blob
aa7945ff4c266a92a98fcb83a59d243f5698acb1
1
// { dg-do compile }
2
// { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } { "" } }
3
// { dg-options "-fdump-tree-optimized" }
4
5
class aa{
6
void f();
7
private:
8
volatile int a;
9
};
10
11
void aa::f(){
12
a=1;
13
a=1;
14
}
15
16
// { dg-final { scan-tree-dump-times "a ={v} 1;" 2 "optimized" } }