Arthur Eubanks 61d418f971 [test] Remove references to -fexperimental-new-pass-manager in tests
This has been the default for a while and we're in the process of removing the legacy PM optimization pipeline.
2022-04-11 13:29:08 -07:00

8 lines
214 B
C

// RUN: %clang -O0 %s -target bpf -g -c -o /dev/null
// REQUIRES: bpf-registered-target
struct ss {
int a;
};
int foo() { return __builtin_btf_type_id(0, 0) + __builtin_preserve_type_info(*(struct ss *)0, 0); }