aboutsummaryrefslogtreecommitdiff
path: root/src/llvm_backend_const.cpp
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-07-26 01:00:38 +0200
committerGitHub <noreply@github.com>2022-07-26 01:00:38 +0200
commit4af8a6458047787dd4b743198f20dd262f3e0592 (patch)
tree82abd518e3fc6bedb84731dee52753fee9a175ea /src/llvm_backend_const.cpp
parent220dfd74403289aed4d4ed420bc4f73bf2e90c3e (diff)
parentc9c3611b1d4aa5e570addf7a8632dab503e2dbea (diff)
Merge pull request #1907 from thePHTest/minor-fix
remove leftover print statement
Diffstat (limited to 'src/llvm_backend_const.cpp')
-rw-r--r--src/llvm_backend_const.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/llvm_backend_const.cpp b/src/llvm_backend_const.cpp
index 24b2bc3a2..201932ad9 100644
--- a/src/llvm_backend_const.cpp
+++ b/src/llvm_backend_const.cpp
@@ -1041,7 +1041,6 @@ lbValue lb_const_value(lbModule *m, Type *type, ExactValue value, bool allow_loc
i64 v = big_int_to_i64(&tav.value.value_integer);
i64 lower = type->BitSet.lower;
u64 index = cast(u64)(v-lower);
- gb_printf_err("index: %llu\n", index);
BigInt bit = {};
big_int_from_u64(&bit, index);
big_int_shl(&bit, &one, &bit);