2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr46469.C
blobc16a0f277a770fbbdaee40b61361055ff95c1556
1 extern "C"  __inline __attribute__ ((__gnu_inline__)) int pthread_equal ()
2   {
3     return 0;
4   }
6 static
7   __typeof
8   (pthread_equal)
9   __gthrw_pthread_equal __attribute__ ((__weakref__ ("pthread_equal")));
11 int identifierByPthreadHandle ()
13   pthread_equal ();
14   return 0;