From 3ba3558c93a71c5cda2f2f08b379084c111a2d5c Mon Sep 17 00:00:00 2001 From: dzaima Date: Sat, 13 Nov 2021 23:00:36 +0200 Subject: [PATCH] =?UTF-8?q?fills=20for=20monadic=20=E2=8B=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/builtins/sfns.c | 2 +- src/jit/x86_64.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/builtins/sfns.c b/src/builtins/sfns.c index 6c3bd4cf..325e7708 100644 --- a/src/builtins/sfns.c +++ b/src/builtins/sfns.c @@ -77,7 +77,7 @@ FORCE_INLINE B m_vec2Base(B a, B b, bool fills) { B m_vec2(B a, B b) { return m_vec2Base(a, b, false); } -B pair_c1(B t, B x) { return m_v1(x); } +B pair_c1(B t, B x) { return m_vec1(x); } B pair_c2(B t, B w, B x) { return m_vec2Base(w, x, true); } B shape_c1(B t, B x) { diff --git a/src/jit/x86_64.h b/src/jit/x86_64.h index ac646307..907e211d 100644 --- a/src/jit/x86_64.h +++ b/src/jit/x86_64.h @@ -121,7 +121,7 @@ static inline void asm_r() { if (RARE(asm_ins.c+32 > asm_ins.e)) asm_bufDbl(&asm_ins, 32); } -static NOINLINE void asm_addRel(u32 v) { // TODO play around with inlining +static NOINLINE void asm_addRel(u32 v) { if (RARE(asm_rel.c == asm_rel.e)) asm_bufDbl(&asm_rel, 4); asm_w4(asm_rel.c, v); asm_rel.c+= 4;