blob: cd8c2c2437e30bbd8f1608514b0c780769531278 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
#include <stdint.h>
#include <bpf-helpers.h>
void
foo ()
{
int ret;
void *skb, *to;
uint32_t offset, len, start_header;
ret = bpf_skb_load_bytes_relative (skb, offset,
to, len,
start_header);
}
/* { dg-final { scan-assembler "call\t68" } } */