mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

This has been the default for a while and we're in the process of removing the legacy PM optimization pipeline.
8 lines
214 B
C
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); }
|