From c4916c67a5059f6c91b378fb5135922e4ed4c69a Mon Sep 17 00:00:00 2001 From: dawa79 <44974635+dawa79@users.noreply.github.com> Date: Thu, 24 Oct 2024 18:36:17 +0000 Subject: [PATCH] fix 128 bit type --- lib/hobbes/eval/func.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/hobbes/eval/func.C b/lib/hobbes/eval/func.C index 10da22bde..41736afab 100644 --- a/lib/hobbes/eval/func.C +++ b/lib/hobbes/eval/func.C @@ -189,6 +189,8 @@ BOP(i16mul, CreateMul, int128_t, int128_t, int128_t); BOP(i16div, CreateSDiv, int128_t, int128_t, int128_t); BOP(i16rem, CreateSRem, int128_t, int128_t, int128_t); +BOP(i16shl, CreateShl, int128_t, int128_t, int128_t); + BOP(i16eq, CreateICmpEQ, int128_t, int128_t, bool); BOP(i16neq, CreateICmpNE, int128_t, int128_t, bool); BOP(i16lt, CreateICmpSLT, int128_t, int128_t, bool);