blob: b28125ba8ac5ae6f30ad9c8e65697559091200e9 [file] [log] [blame]
/* Test case to check if LIPO and target specific builtins work fine. */
/* { dg-skip-if "" { ! { i?86-*-* x86_64-*-* } } { "*" } { "" } } */
/* { dg-options "-O2" } */
__attribute__((target("sse4.2")))
unsigned int crc_aux (unsigned int A, unsigned int B);
int main ()
{
return crc_aux (0, 0);
}