blob: e58ab4c5955323cae7a9c8245e73c5c9eddfb078 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-ifunc "" } */
class b
{
public:
__attribute__ ((target ("aes"))) b () {}
__attribute__ ((target ("default"))) b () {}
};
class c
{
b d;
};
void
fn1 ()
{
c a;
}
__attribute__ ((target_clones ("sse", "default"))) void
e ()
{
}