blob: 64261c56f92164a593a29b5ebe18794170cdd649 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
#include <stdint.h>
#include <bpf-helpers.h>
void
foo ()
{
int ret;
void *src, *dst;
uint32_t size;
ret = bpf_probe_read (dst, size, src);
}
/* { dg-final { scan-assembler "call\t4" } } */