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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.warn
/
flow1.C
blob
61f6a554970821a32f4a5ba7e35d9b1b7f383115
1
// { dg-do assemble }
2
// { dg-options "-Wreturn-type" }
3
// Test that we don't get a warning about flowing off the end.
4
5
struct A {
6
~A ();
7
};
8
9
int f()
10
{
11
A a1[2];
12
A a2[2];
13
return 1234567;
14
}