From: Michael Beck Date: Thu, 18 May 2006 22:40:04 +0000 (+0000) Subject: fixed typo X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=5e7e30ff3ba288b238f1d7ce365bb80602bf60b9;p=libfirm fixed typo fixed stupid "0x80000000 is unsigned" gcc-problem [r7768] --- diff --git a/ir/tr/type.h b/ir/tr/type.h index 6e9d4c59f..16d2b004f 100644 --- a/ir/tr/type.h +++ b/ir/tr/type.h @@ -796,7 +796,7 @@ typedef enum { its return values solely from its parameters. GCC: __attribute__((const)). */ mtp_property_pure = 0x00000002, /**< This method did NOT write to memory and calculates - its return values solely form its parameters and + its return values solely from its parameters and the memory they points to (or global vars). GCC: __attribute__((pure)). */ mtp_property_noreturn = 0x00000004, /**< This method did not return due to an aborting system @@ -810,7 +810,7 @@ typedef enum { GCC: __attribute__((malloc)). */ mtp_property_intrinsic = 0x00000040, /**< This method is intrinsic. It is expected that a lowering phase will remove all calls to it. */ - mtp_property_inherited = 0x40000000 /**< used only in irg's, means property is inherited + mtp_property_inherited = (1<<31) /**< used only in irg's, means property is inherited from type. */ } mtp_additional_property;