2 /* { dg-do compile { target int32plus } } */
4 #define TOLOWER(x) (x&~0x20)
7 (TOLOWER(s[0]) << 24) + (TOLOWER(s[1]) << 16) + (TOLOWER(s[2]) << 8) + TOLOWER(s[3]) : \
8 (TOLOWER(s[0]) << 16) + (TOLOWER(s[1]) << 8) + TOLOWER(s[2]) : \
9 (TOLOWER(s[0]) << 8) + TOLOWER(s[1]) : \
12 const unsigned int _the
= Word("the");