(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
bpf/
helper-skb-adjust-room.c
       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    int ret;
      11    void *skb;
      12    int32_t len_diff;
      13    uint32_t mode;
      14    uint64_t flags;
      15  
      16    ret = bpf_skb_adjust_room (skb, len_diff, mode, flags);
      17  }
      18  
      19  /* { dg-final { scan-assembler "call\t50" } } */