Change noinline to dontinline (#312)

We defined `noinline` as an abbreviation for the longer version
`__attribute__((__noinline__))` which caused name clashes since
third party codebases often write it as `__attribute__((noinline))`.
This commit is contained in:
Gautham 2021-11-13 04:42:18 +05:30 committed by GitHub
parent ca611efc43
commit 6f658f058b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 122 additions and 122 deletions

View file

@ -76,7 +76,7 @@ void ctrdrbg2(void *p, size_t n) {
mbedtls_ctr_drbg_free(&rng);
}
noinline uint64_t xorshift(void) {
dontinline uint64_t xorshift(void) {
static uint64_t s = 88172645463325252;
uint64_t x = s;
x ^= x << 13;
@ -85,7 +85,7 @@ noinline uint64_t xorshift(void) {
return (s = x);
}
noinline void xorshifta(char *p, size_t n) {
dontinline void xorshifta(char *p, size_t n) {
static uint64_t s = 88172645463325252;
uint64_t x = s;
while (n >= 8) {
@ -103,7 +103,7 @@ noinline void xorshifta(char *p, size_t n) {
}
}
noinline uint64_t knuth(void) {
dontinline uint64_t knuth(void) {
uint64_t a, b;
static uint64_t x = 1;
x *= 6364136223846793005;
@ -115,7 +115,7 @@ noinline uint64_t knuth(void) {
return a | b << 32;
}
noinline void knutha(char *p, size_t n) {
dontinline void knutha(char *p, size_t n) {
static uint64_t s = 1;
uint32_t u;
uint64_t x = s;