ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/bpf/helper-xdp-adjust-meta.c

18 lines
257 B
C

/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
#include <stdint.h>
#include <bpf-helpers.h>
void
foo ()
{
int ret;
void *xdp_md;
int delta;
ret = bpf_xdp_adjust_meta (xdp_md, delta);
}
/* { dg-final { scan-assembler "call\t54" } } */