]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/bpf/helper-get-hash-recalc.c
GCC port for eBPF
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / bpf / helper-get-hash-recalc.c
1 /* { dg-do compile } */
2
3 #include <stdint.h>
4
5 void
6 foo ()
7 {
8 uint32_t ret;
9 void *skb;
10
11 ret = __builtin_bpf_helper_get_hash_recalc (skb);
12 }
13
14 /* { dg-final { scan-assembler "call\t34" } } */