| ... | ... | @@ -326,10 +326,8 @@ TypeTableEntry *get_pointer_to_type_extra(CodeGen *g, TypeTableEntry *child_type |
| 326 | 326 | |
| 327 | 327 | TypeId type_id = {}; |
| 328 | 328 | TypeTableEntry **parent_pointer = nullptr; |
| 329 | | uint32_t abi_alignment; |
| 330 | | if (unaligned_bit_count != 0 || is_volatile || |
| 331 | | byte_alignment != (abi_alignment = get_abi_alignment(g, child_type))) |
| 332 | | { |
| 329 | uint32_t abi_alignment = get_abi_alignment(g, child_type); |
| 330 | if (unaligned_bit_count != 0 || is_volatile || byte_alignment != abi_alignment) { |
| 333 | 331 | type_id.id = TypeTableEntryIdPointer; |
| 334 | 332 | type_id.data.pointer.child_type = child_type; |
| 335 | 333 | type_id.data.pointer.is_const = is_const; |