mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
433da1fc04
They pass fine.
10 lines
146 B
C
10 lines
146 B
C
#include <stdint.h>
|
|
|
|
uint32_t c_always_inlined() {
|
|
return 1234;
|
|
}
|
|
|
|
__attribute__((noinline)) uint32_t c_never_inlined() {
|
|
return 12345;
|
|
}
|