From 189b7adaaac1b4fc133c51c860ce47ca346d7058 Mon Sep 17 00:00:00 2001 From: cancel <cancel@cancel.fm> Date: Fri, 30 Nov 2018 23:24:25 +0900 Subject: [PATCH] Mark another fn not inline I could easily clean this one up to not have a loop, though --- sim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim.c b/sim.c index f165c6d..673f526 100644 --- a/sim.c +++ b/sim.c @@ -19,7 +19,7 @@ static inline Glyph glyph_lowered(Glyph c) { // Always returns 0 through (sizeof indexed_glyphs) - 1, and works on // capitalized glyphs as well. The index of the lower-cased glyph is returned // if the glyph is capitalized. -static inline Usz semantic_index_of_glyph(Glyph c) { +static ORCA_FORCE_NO_INLINE Usz semantic_index_of_glyph(Glyph c) { Glyph c0 = glyph_lowered(c); if (c0 == '.') return 0;