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
2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
builtin7.C
blob
dae658abc4a5f2e67993535516c92bae83f11326
1
// PR c++/19628
2
// Verify that __builtin_constant_p may appear in a constant-expression.
3
4
// { dg-do run }
5
6
int main()
7
{
8
switch (3) {
9
case (__builtin_constant_p(7) ? 3 : 8):
10
return 0;
11
default:
12
return 1;
13
}
14
}