1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu99" } */
3
4 #include <stdint.h>
5 #include <bpf-helpers.h>
6
7 void
8 foo ()
9 {
10 void *ret, *map;
11 uint64_t flags;
12
13 ret = bpf_get_local_storage (map, flags);
14 }
15
16 /* { dg-final { scan-assembler "call\t81" } } */