]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/cross-lang-lto-pgo-smoketest/clib.c
rustdoc-json: Make the `fns/generics.rs` test much more robust
[rust.git] / src / test / run-make-fulldeps / cross-lang-lto-pgo-smoketest / clib.c
1 #include <stdint.h>
2
3 uint32_t c_always_inlined() {
4     return 1234;
5 }
6
7 __attribute__((noinline)) uint32_t c_never_inlined() {
8     return 12345;
9 }