From f71b18045eb847fb3f65bf55e0cbdbd7f2b79dd4 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Wed, 3 Jan 2024 21:01:45 -0500 Subject: [PATCH] goalc: resolve x86 compilation error --- goalc/compiler/IR.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/goalc/compiler/IR.cpp b/goalc/compiler/IR.cpp index 37ec8ee8168..f9e954d7ac3 100644 --- a/goalc/compiler/IR.cpp +++ b/goalc/compiler/IR.cpp @@ -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: