@@ -45,7 +45,7 @@ typedef uint32_t unative_t;
* The SHLBYTE() operation shifts each byte left by 1, *not*
* rolling over into the next byte
*/
-static inline __attribute_const__ unative_t SHLBYTE(unative_t v)
+static inline unative_t SHLBYTE(unative_t v)
{
unative_t vv;
@@ -57,7 +57,7 @@ static inline __attribute_const__ unative_t SHLBYTE(unative_t v)
* The MASK() operation returns 0xFF in any byte for which the high
* bit is 1, 0x00 for any byte for which the high bit is 0.
*/
-static inline __attribute_const__ unative_t MASK(unative_t v)
+static inline unative_t MASK(unative_t v)
{
unative_t vv;