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
doc: install: document UBSAN_OPTIONS
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
net25.C
blob
57b66eafad1565ad67f9441aea84965c2d463070
1
// { dg-do assemble }
2
3
void shake_zero()
4
{
5
}
6
7
void shake_one()
8
{
9
}
10
11
void (*foo)();
12
13
int main(int a, char** /*argv*/)
14
{
15
foo = a ? shake_zero : shake_one;
16
return 0;
17
}