From f77aad689f9980d7746df5fbd0b770edeefde03a Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 26 Mar 2006 14:12:43 +0000 Subject: [PATCH] add irop_flag_machine to mark "machine operations". This flag should be set for all machine opcodes. [r7530] --- ir/ir/irop.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ir/ir/irop.h b/ir/ir/irop.h index f2c42c918..2a4ddfe8b 100644 --- a/ir/ir/irop.h +++ b/ir/ir/irop.h @@ -59,7 +59,8 @@ typedef enum { skipped in low-level optimizations */ irop_flag_constlike = 0x00000080, /**< the operation has no arguments and is some kind of a constant */ - irop_flag_keep = 0x00000100 /**< this operation can be kept in End's keep-alive list */ + irop_flag_keep = 0x00000100, /**< this operation can be kept in End's keep-alive list */ + irop_flag_machine = 0x00000200 /**< this operation is a machine operation, all higher flags are machine flags */ } irop_flags; /** The opcodes of the libFirm predefined operations. */ -- 2.20.1