Skip to content

Commit

Permalink
fix 128 bit type
Browse files Browse the repository at this point in the history
  • Loading branch information
dawa79 committed Oct 24, 2024
1 parent b360f05 commit c4916c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/hobbes/eval/func.C
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c4916c6

Please sign in to comment.