aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/analyze.cpp')
-rw-r--r--src/analyze.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp
index f20d155e4f..e0d34be281 100644
--- a/src/analyze.cpp
+++ b/src/analyze.cpp
@@ -163,10 +163,6 @@ static TypeTableEntry *new_container_type_entry(TypeTableEntryId id, AstNode *so
return entry;
}
-static uint8_t log2_u64(uint64_t x) {
- return (63 - clzll(x));
-}
-
static uint8_t bits_needed_for_unsigned(uint64_t x) {
if (x == 0) {
return 0;