From 90d2e30df2f1a2cd7b11f2f1c7c45d9ee7cebffe Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 14 Sep 2005 14:43:26 +0000 Subject: [PATCH] irg_malloc_function added [r6618] --- ir/ir/irgraph.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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. */ -- 2.20.1