From c6b061aa70261af6778771d5934c8c64f5e89ac3 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 30 May 2007 20:20:28 +0000 Subject: [PATCH] Do not waste an opcode number. This ensures the 1:1 mapping from iro_* to opcode in the irp. [r14200] --- ir/be/benode_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/benode_t.h b/ir/be/benode_t.h index c8f3a0597..fc119994b 100644 --- a/ir/be/benode_t.h +++ b/ir/be/benode_t.h @@ -65,7 +65,7 @@ extern ir_op *op_be_FrameStore; extern ir_op *op_be_Barrier; typedef enum { - beo_NoBeOp = 0, + beo_NoBeOp = -1, beo_Spill, beo_Reload, beo_Perm, -- 2.20.1