(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
bpf/
helper-rc-keydown.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 *ctx;
      12    uint32_t protocol, toggle;
      13    uint64_t scancode;
      14  
      15    ret = bpf_rc_keydown (ctx, protocol, scancode, toggle);
      16  }
      17  
      18  /* { dg-final { scan-assembler "call\t78" } } */