]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/clib.c
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / 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 }