Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / auto-fn5.C
blob17ce4d291249b9129dd192582a86ca60f270374a
1 // { dg-do run { target c++14 } }
3 int i;
4 auto& f() { return i; }
6 int main()
8   f() = 42;
9   return i != 42;