view gcc/testsuite/gcc.dg/cwsc0.c @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */

#include <stddef.h>

void foo(void);
void test(int (*f)(void), char *p)
{
  __builtin_call_with_static_chain(f(), p);
  __builtin_call_with_static_chain(p, f());  /* { dg-error "must be a call" } */
  __builtin_call_with_static_chain(f() + 1, p); /* { dg-error "must be a call" } */
  __builtin_call_with_static_chain(f(), 0);  /* { dg-error "must be a pointer" } */
  __builtin_call_with_static_chain(f(), NULL);
  __builtin_call_with_static_chain(foo, p);  /* { dg-error "must be a call" } */
  __builtin_call_with_static_chain(foo(), p);
  __builtin_call_with_static_chain(foo(), foo);
}