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