From: Matthias Braun Date: Wed, 24 Oct 2012 16:21:24 +0000 (+0200) Subject: avoid -pedantic warning X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=59b5600391bebce56e81368ef743d69397cfd023;p=libfirm avoid -pedantic warning --- diff --git a/include/libfirm/firm_types.h b/include/libfirm/firm_types.h index f80ec158f..b794538c0 100644 --- a/include/libfirm/firm_types.h +++ b/include/libfirm/firm_types.h @@ -292,7 +292,7 @@ typedef enum mtp_additional_properties { /** the programmer recommends to inline the function */ mtp_property_inline_recommended = 1u << 13, /** stupid hack used by opt_funccall... */ - mtp_temporary = 1u << 31, + mtp_temporary = 1u << 14, } mtp_additional_properties; ENUM_BITSET(mtp_additional_properties)