From: Michael Beck Date: Fri, 30 Jun 2006 12:30:35 +0000 (+0000) Subject: irg_inline_forced_no_body inline property added X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4a66f0a15aad79ea64bdf6e742dc7097f04428ed;p=libfirm irg_inline_forced_no_body inline property added [r7974] --- diff --git a/ir/ir/irgraph.h b/ir/ir/irgraph.h index 3485e22c6..145fb599b 100644 --- a/ir/ir/irgraph.h +++ b/ir/ir/irgraph.h @@ -429,10 +429,12 @@ void set_irg_callee_info_state(ir_graph *irg, irg_callee_info_s * Tells how to handle an ir graph in inlineing. */ typedef enum { - irg_inline_any, /**< No restriction on inlineing. Default. */ - irg_inline_forbidden, /**< The graph may not be inlined. */ - irg_inline_recomended, /**< The graph should be inlined. */ - irg_inline_forced /**< The graph must be inlined. */ + irg_inline_any, /**< No restriction on inlineing. Default. */ + irg_inline_forbidden, /**< The graph may not be inlined. */ + irg_inline_recomended, /**< The graph should be inlined. */ + irg_inline_forced, /**< The graph must be inlined. */ + irg_inline_forced_no_body /**< The graph must be inlined. No body is allowed + to be emitted. */ } irg_inline_property; /** Returns the inline property of a graph. */