diff options
| author | gingerBill <bill@gingerbill.org> | 2021-09-16 23:03:25 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-09-16 23:03:25 +0100 |
| commit | 4cb7f056440130cb8160a8eaea4a47b270975483 (patch) | |
| tree | d655f614efd1d32a7d20d0148962e5ac3d0fff62 /src/llvm_backend_debug.cpp | |
| parent | 91d089ffe26f3d31afcde51010e58e0b1f0d0a11 (diff) | |
| parent | d2aa6af88277b670d2891508afc1a7269c6ee15e (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/llvm_backend_debug.cpp')
| -rw-r--r-- | src/llvm_backend_debug.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/llvm_backend_debug.cpp b/src/llvm_backend_debug.cpp index 703362957..1a540cd33 100644 --- a/src/llvm_backend_debug.cpp +++ b/src/llvm_backend_debug.cpp @@ -50,8 +50,8 @@ LLVMMetadataRef lb_debug_type_internal_proc(lbModule *m, Type *type) { GB_ASSERT(type != t_invalid); - unsigned const word_size = cast(unsigned)build_context.word_size; - unsigned const word_bits = cast(unsigned)(8*build_context.word_size); + /* unsigned const word_size = cast(unsigned)build_context.word_size; + unsigned const word_bits = cast(unsigned)(8*build_context.word_size); */ GB_ASSERT(type->kind == Type_Proc); unsigned parameter_count = 1; @@ -129,7 +129,7 @@ LLVMMetadataRef lb_debug_type_internal(lbModule *m, Type *type) { GB_ASSERT(type != t_invalid); - unsigned const word_size = cast(unsigned)build_context.word_size; + /* unsigned const word_size = cast(unsigned)build_context.word_size; */ unsigned const word_bits = cast(unsigned)(8*build_context.word_size); switch (type->kind) { @@ -564,7 +564,7 @@ LLVMMetadataRef lb_debug_type(lbModule *m, Type *type) { } void lb_debug_complete_types(lbModule *m) { - unsigned const word_size = cast(unsigned)build_context.word_size; + /* unsigned const word_size = cast(unsigned)build_context.word_size; */ unsigned const word_bits = cast(unsigned)(8*build_context.word_size); for_array(debug_incomplete_type_index, m->debug_incomplete_types) { |