From a8777b7b8f88ddccf2d533fb6e27876e0e1a3b48 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 15 Jun 2005 10:01:19 +0000 Subject: [PATCH] removed comma at end of enum for weak crecoder [r6016] --- ir/ir/irop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ir/irop.h b/ir/ir/irop.h index 3ab82d3ef..b10145012 100644 --- a/ir/ir/irop.h +++ b/ir/ir/irop.h @@ -39,7 +39,7 @@ typedef enum { oparity_dynamic, /**< arity depends on state of firm representation. Can change by optimizations... We must allocate a dynamic in array for the node! */ - oparity_any, /**< other arity */ + oparity_any /**< other arity */ } op_arity; @@ -53,7 +53,7 @@ typedef enum { irop_flag_fragile = 0x00000010, /**< set if the operation can change the control flow because of an exception */ irop_flag_forking = 0x00000020, /**< the operation is a forking control flow */ - irop_flag_highlevel = 0x00000040, /**< the operation is a pure high-level one and can be + irop_flag_highlevel = 0x00000040 /**< the operation is a pure high-level one and can be skipped in low-level optimizations */ } irop_flags; -- 2.20.1