From d3ce9d0643421da77063472cb1124123cda753bb Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 16 Jul 2018 11:59:37 -0400 Subject: [PATCH] codegen: remove unused variable --- src/codegen.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/codegen.cpp b/src/codegen.cpp index c38ae1036a..f8801ea132 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -6062,21 +6062,6 @@ static void do_code_gen(CodeGen *g) { } } -static const uint8_t int_sizes_in_bits[] = { - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 16, - 29, - 32, - 64, - 128, -}; - struct CIntTypeInfo { CIntType id; const char *name;