add back NOINLINE to c[12]_rare
it appears to maybe now be better in at least some cases?
This commit is contained in:
parent
3dbb492b78
commit
24e37b4a84
4
src/h.h
4
src/h.h
@ -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));
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user