blob: eaed98426042cf4a285d947a744a7433f55c9fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-do compile } */
/* { dg-options "-O0 -mavx512vnni -mavx512vl -mno-popcnt" } */
inline int __attribute__ ((__gnu_inline__, __always_inline__, target("popcnt")))
foo () /* { dg-error "inlining failed in call to 'always_inline' .* target specific option mismatch" } */
{
return 0;
}
int bar()
{
return foo (); /* { dg-message "called from here" } */
}
|