From: Michael Beck Date: Wed, 14 Sep 2005 14:43:26 +0000 (+0000) Subject: irg_malloc_function added X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=90d2e30df2f1a2cd7b11f2f1c7c45d9ee7cebffe;p=libfirm irg_malloc_function added [r6618] --- diff --git a/ir/ir/irgraph.h b/ir/ir/irgraph.h index 5a71aabc8..5dcc4132d 100644 --- a/ir/ir/irgraph.h +++ b/ir/ir/irgraph.h @@ -444,8 +444,10 @@ typedef enum { GCC: __attribute__((noreturn)). */ irg_nothrow_function = 0x00000008, /**< This graph cannot throw an exception. GCC: __attribute__((nothrow)). */ - irg_naked_function = 0x00000010 /**< This graph is naked. + irg_naked_function = 0x00000010, /**< This graph is naked. GCC: __attribute__((naked)). */ + irg_malloc_function = 0x00000020 /**< This graph returns newly allocate memory. + GCC: __attribute__((malloc)). */ } irg_additional_property; /** Returns the mask of the additional graph properties. */