add back NOINLINE to c[12]_rare

it appears to maybe now be better in at least some cases?
This commit is contained in:
dzaima 2021-05-27 16:26:18 +03:00
parent 3dbb492b78
commit 24e37b4a84

View File

@ -435,11 +435,11 @@ typedef struct Fun {
} Fun;
static B c1_rare(B f, B x) { dec(x);
static NOINLINE B c1_rare(B f, B x) { dec(x);
if (isMd(f)) thrM("Calling a modifier");
return inc(VALIDATE(f));
}
static B c2_rare(B f, B w, B x) { dec(w); dec(x);
static NOINLINE B c2_rare(B f, B w, B x) { dec(w); dec(x);
if (isMd(f)) thrM("Calling a modifier");
return inc(VALIDATE(f));
}