diff options
| author | ske <contact@ske.land> | 2025-12-30 22:24:10 -0300 |
|---|---|---|
| committer | ske <contact@ske.land> | 2025-12-30 22:24:10 -0300 |
| commit | 2700fa86d647ed27f4f7f008ef7d15299bfd6671 (patch) | |
| tree | f7212a74742329bf16f0dded3bef5e2cd6036b0b | |
| parent | e4bf5476c3cc218b1265b2cb90c3b4fe3c9d3df8 (diff) | |
fix typo
| -rw-r--r-- | src/llvm_backend_const.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend_const.cpp b/src/llvm_backend_const.cpp index 9c407be00..8ce2137ab 100644 --- a/src/llvm_backend_const.cpp +++ b/src/llvm_backend_const.cpp @@ -539,7 +539,7 @@ gb_internal LLVMValueRef lb_big_int_to_llvm(lbModule *m, Type *original_type, Bi } if (big_int_is_neg(a)) { - // sizeof intead of sz for sign extend to work properly + // sizeof instead of sz for sign extend to work properly for (size_t i = 0; i < sizeof rop64; i++) { rop[i] = ~rop[i]; } |