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 not needed __builtin_expect due to malloc predictor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
constexpr-copy3.C
blob
cce4b54df7f6360d032857abdca2735a335e411d
1
// PR c++/69995
2
// { dg-do compile { target c++14 } }
3
4
struct A
5
{
6
int i;
7
};
8
9
constexpr int f(A a)
10
{
11
++a.i;
12
return a.i;
13
}
14
15
constexpr bool g()
16
{
17
A a = { 42 };
18
A b = a;
19
++b.i;
20
if (b.i != 43) return false;
21
if (a.i != 42) return false;
22
return true;
23
}
24
25
#define SA(X) static_assert((X),#X)
26
SA(g());