From 70525e7073bfc4b5df39a9d8f319a2c09c1d9912 Mon Sep 17 00:00:00 2001 From: Andrii Penechko Date: Sun, 26 May 2024 20:24:03 +0300 Subject: [PATCH] Remove unused variable --- source/vox/ir/ir_function.d | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/vox/ir/ir_function.d b/source/vox/ir/ir_function.d index e57c1c84..3abeef38 100644 --- a/source/vox/ir/ir_function.d +++ b/source/vox/ir/ir_function.d @@ -138,7 +138,6 @@ struct IrFunction void orderBlocks() { IrIndex first; - IrIndex firstLink; void walk(IrIndex node) { @@ -149,8 +148,6 @@ struct IrFunction walk(succ); if (first.isDefined) linkSingleBlockBefore(&this, node, first); - else - firstLink = node; first = node; }