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
RTEMS: Add Cortex-M33 multilib
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr91221.C
blob
3036f1bc43b25bd9c330b2d1097a9022c1a13f4c
1
// { dg-do compile }
2
// { dg-options "-O2 -fno-ipa-pure-const -fpack-struct -Wno-address-of-packed-member" }
3
4
void printf(...);
5
struct A {
6
A() : bar_(), dbar_() {
7
for (int i;; i++)
8
printf(i, bar_[i]);
9
}
10
int bar_[5];
11
double dbar_[5];
12
};
13
void fn1() { A a; }