i386: Fix up X87_ENABLE_{FLOAT,ARITH} in conditions [PR94440]
[gcc.git] / gcc / testsuite / gcc.target / bpf / helper-perf-prog-read-value.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, *buf;
12 uint64_t buf_size;
13
14 ret = bpf_perf_prog_read_value (ctx, buf, buf_size);
15 }
16
17 /* { dg-final { scan-assembler "call\t56" } } */