From 6aecc8404a63017af4ed0c263cb20444dac2c6df Mon Sep 17 00:00:00 2001 From: cancel Date: Sat, 1 Dec 2018 18:35:39 +0900 Subject: [PATCH] Cleanup --- sim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim.c b/sim.c index a40d992..3c275f5 100644 --- a/sim.c +++ b/sim.c @@ -70,8 +70,8 @@ static Glyph glyphs_mod(Glyph a, Glyph b) { return indexed_glyphs[ib == 0 ? 0 : (ia % ib)]; } -ORCA_PURE static bool oper_has_neighboring_bang(Glyph const* gbuf, Usz h, Usz w, - Usz y, Usz x) { +ORCA_PURE ORCA_FORCE_NO_INLINE static bool +oper_has_neighboring_bang(Glyph const* gbuf, Usz h, Usz w, Usz y, Usz x) { Glyph const* gp = gbuf + w * y + x; if (x < w && gp[1] == '*') return true;