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;
      11    void *map, *sk, *value;
      12    uint64_t flags;
      13  
      14    ret = bpf_sk_storage_get (map, sk, value, flags);
      15  }
      16  
      17  /* { dg-final { scan-assembler "call\t107" } } */