blob: bf0dc4c5d4eea552d67511b8ecfe25a3cec08953 [file] [log] [blame]
// { dg-do compile { target c++2a } }
int a, b, c;
void
__attribute__((noinline))
bar()
{
if (a == 123)
[[likely]] c = 5; // { dg-warning "both" }
else
[[likely]] b = 77;
}
int main()
{
bar ();
return 0;
}