view gcc/testsuite/gcc.dg/atomic-lockfree-aux.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test supply a __atomic_is_lock_free routine for lock-free tests.  */
/* Just compile it on its own.  */
/* { dg-do compile } */
/* { dg-options "-w" } */

/* Test that __atomic_{is,always}_lock_free builtins execute.  */

#include <stdlib.h>

/* Supply a builtin external function which returns a non-standard value so
   it can be detected that it was called.  */
int 
__atomic_is_lock_free (size_t s, void *p)
{
  return 2;
}