Skip to content

Commit

Permalink
goalc: resolve x86 compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Jan 4, 2024
1 parent 8bb8dfe commit f71b180
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions goalc/compiler/IR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -863,8 +863,7 @@ void IR_ConditionalBranch::do_codegen(emitter::ObjectGenerator* gen,
const AllocationResult& allocs,
emitter::IR_Record irec) {
#ifndef __aarch64__
Instruction jump_instr;
jump_instr = InstructionX86(0);
Instruction jump_instr = InstructionX86(0);
ASSERT(m_resolved);
switch (condition.kind) {
case ConditionKind::EQUAL:
Expand Down

0 comments on commit f71b180

Please sign in to comment.