public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: NightStrike <nightstrike@gmail.com>
To: gcc@gcc.gnu.org
Subject: Thousands of enum warnings building gcc
Date: Tue, 10 Apr 2012 12:11:00 -0000	[thread overview]
Message-ID: <CAF1jjLt9Vc54hwjZQWTT76HCBkNi+je2XfzDTWfq5_wv7o7f9Q@mail.gmail.com> (raw)

Generally speaking, I've tried to help people get us a clean build of
gcc warning-wise for the windows targets.  This has historically been
challenging mainly due to printf.  Kai added a lot of support for
handling whacky windows printfs, and we were doing very well for a
long time.  Currently, however, there are two instances where giant
massive piles of warnings spit out due to enums not being handled in a
switch.  Is this a warning that we could just disable by default for
building gcc?  My builds are filled with this:


../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NONE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOSH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOSHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOSHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ACOSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASINH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASINHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASINHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASINL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATAN2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATAN2F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATAN2L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATANH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATANHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATANHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CBRT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CBRTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CBRTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEILF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEILL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COPYSIGN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COPYSIGNF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COPYSIGNL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COSH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COSHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COSHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DREM' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DREMF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DREML' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERFC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERFCF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERFCL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERFF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ERFL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP10' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP10F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP10L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP2F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXP2L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPM1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPM1F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPM1L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FABSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FABSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FDIM' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FDIMF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FDIML' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FLOOR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FLOORF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FLOORL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMAF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMAXF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMAXL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMINL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMOD' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMODF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FMODL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FREXP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FREXPF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FREXPL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMAF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMA_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMAF_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GAMMAL_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HUGE_VAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HUGE_VALF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HUGE_VALL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HYPOT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HYPOTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_HYPOTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ICEIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ICEILF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ICEILL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IFLOOR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IFLOORF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IFLOORL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ILOGB' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ILOGBF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ILOGBL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INFF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INFL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INFD32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INFD64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INFD128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IRINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IRINTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IROUND' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IROUNDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IROUNDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J0' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J0F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J0L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J1F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_J1L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_JN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_JNF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_JNL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LCEIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LCEILF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LCEILL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LDEXP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LDEXPF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LDEXPL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LFLOOR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LFLOORF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LFLOORL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMAF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMA_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMAF_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LGAMMAL_R' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLCEIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLCEILF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLCEILL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLFLOOR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLFLOORF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLFLOORL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLRINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLRINTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLROUND' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLROUNDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLROUNDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG10' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG10F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG10L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG1P' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG1PF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG1PL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG2F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOG2L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOGB' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOGBF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOGBL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOGF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LOGL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LRINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LRINTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LROUND' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LROUNDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LROUNDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MODF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MODFF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MODFL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NAND32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NAND64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NAND128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NANS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NANSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NANSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEARBYINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEARBYINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEARBYINTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTAFTER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTAFTERF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTAFTERL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTTOWARD' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTTOWARDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXTTOWARDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POW' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POW10' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POW10F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POW10L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POWF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POWI' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POWIF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POWIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POWL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMAINDER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMAINDERF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMAINDERL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMQUO' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMQUOF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REMQUOL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_RINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_RINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_RINTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ROUND' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ROUNDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ROUNDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALB' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBLN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBLNF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBLNL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBNF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCALBNL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBITF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBITL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBITD32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBITD64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNBITD128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNIFICAND' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNIFICANDF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIGNIFICANDL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINCOS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINCOSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINCOSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SINL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SQRT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SQRTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SQRTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TANH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TANHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TANHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TGAMMA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TGAMMAF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TGAMMAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TRUNC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TRUNCF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TRUNCL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y0' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y0F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y0L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y1F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_Y1L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_YN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_YNF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_YNL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CABSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CABSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOSH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOSHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOSHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CACOSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CARG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CARGF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CARGL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASINH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASINHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASINHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CASINL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATANH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATANHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATANHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CATANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOSF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOSH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOSHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOSHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CCOSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXPF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXPL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXPI' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXPIF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CEXPIL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CIMAG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CIMAGF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CIMAGL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOGF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOGL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOG10' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOG10F' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLOG10L' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CONJ' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CONJF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CONJL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPOW' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPOWF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPOWL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPROJ' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPROJF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CPROJL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CREAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CREALF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CREALL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSINH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSINHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSINHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSINL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSQRT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSQRTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CSQRTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTANH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTANHF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTANHL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_BCMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_BCOPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_BZERO' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INDEX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMCHR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMCMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMMOVE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMPCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMSET' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_RINDEX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STPCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STPNCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCASECMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCHR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCSPN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRDUP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNDUP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRLEN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCASECMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRPBRK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRRCHR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRSPN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRSTR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPRINTF_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTC_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPUTC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPUTC_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPUTS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPUTS_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FSCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FWRITE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FWRITE_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PRINTF_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTCHAR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTCHAR_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PUTS_UNLOCKED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SNPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SSCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VFPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VFSCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSNPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSPRINTF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSSCANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISALNUM' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISALPHA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISASCII' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISBLANK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISCNTRL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISDIGIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISGRAPH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISLOWER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISPRINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISPUNCT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISSPACE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISUPPER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISXDIGIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TOASCII' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TOLOWER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TOUPPER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWALNUM' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWALPHA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWBLANK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWCNTRL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWDIGIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWGRAPH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWLOWER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWPRINT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWPUNCT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWSPACE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWUPPER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISWXDIGIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TOWLOWER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TOWUPPER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ABORT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_AGGREGATE_INCOMING_ADDRESS' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_BSWAP32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_BSWAP64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLEAR_CACHE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CALLOC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLASSIFY_TYPE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLZ' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLZIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLZL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLZLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CONSTANT_P' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTZ' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTZIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTZL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CTZLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLRSB' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLRSBIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLRSBL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_CLRSBLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DCGETTEXT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DGETTEXT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DWARF_CFA' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_DWARF_SP_COLUMN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EH_RETURN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EH_RETURN_DATA_REGNO' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECLP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECV' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECVP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXECVE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXPECT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ASSUME_ALIGNED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXTEND_POINTER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EXTRACT_RETURN_ADDR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FFS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FFSIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FFSL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FFSLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FORK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FREE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FROB_RETURN_ADDR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GETTEXT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_IMAXABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INIT_DWARF_REG_SIZES' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITEF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITEL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITED32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITED64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FINITED128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPCLASSIFY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISFINITE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINF_SIGN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINFF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINFL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINFD32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINFD64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISINFD128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNAN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNANF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNANL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNAND32' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNAND64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNAND128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISNORMAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISGREATER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISGREATEREQUAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISLESS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISLESSEQUAL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISLESSGREATER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ISUNORDERED' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LLABS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_LONGJMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MALLOC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NEXT_ARG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PARITY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PARITYIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PARITYL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PARITYLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POPCOUNT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POPCOUNTIMAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POPCOUNTL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_POPCOUNTLL' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_REALLOC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_RETURN_ADDRESS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SAVEREGS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SETJMP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRFMON' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRFTIME' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TRAP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_UNWIND_INIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_UPDATE_SETJMP_BUF' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VA_COPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VA_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VA_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VA_ARG_PACK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VA_ARG_PACK_LEN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN__EXIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN__EXIT2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INIT_TRAMPOLINE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_INIT_HEAP_TRAMPOLINE' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ADJUST_TRAMPOLINE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_NONLOCAL_GOTO' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SETJMP_SETUP' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SETJMP_DISPATCHER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SETJMP_RECEIVER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_OBJECT_SIZE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMMOVE_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMPCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_MEMSET_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STPCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STPNCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCAT_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCAT_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_STRNCPY_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SNPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSNPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VSPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_FPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VFPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_VPRINTF_CHK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PROFILE_FUNC_ENTER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_PROFILE_FUNC_EXIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EMUTLS_GET_ADDRESS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_EMUTLS_REGISTER_COMMON' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_ADD_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_SUB_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_OR_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_AND_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_XOR_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_FETCH_AND_NAND_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_ADD_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SUB_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_OR_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_AND_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_XOR_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_NAND_AND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_1' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_2' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_4' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_8' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_16' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_1' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_2' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_4' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_8' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_16' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_TEST_AND_SET_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_LOCK_RELEASE_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_SYNC_SYNCHRONIZE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_TEST_AND_SET' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_CLEAR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_EXCHANGE_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_LOAD_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_1' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_2' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_4' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_8' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_COMPARE_EXCHANGE_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_STORE_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ADD_FETCH_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SUB_FETCH_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_AND_FETCH_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_NAND_FETCH_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_XOR_FETCH_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_OR_FETCH_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_ADD_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_SUB_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_AND_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_NAND_16' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_XOR_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_N' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_FETCH_OR_16' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_IS_LOCK_FREE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_THREAD_FENCE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_ATOMIC_SIGNAL_FENCE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_OMP_GET_THREAD_NUM' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_OMP_GET_NUM_THREADS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_ATOMIC_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_ATOMIC_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_BARRIER' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_TASKWAIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_TASKYIELD' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_CRITICAL_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_CRITICAL_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_CRITICAL_NAME_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_CRITICAL_NAME_END' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_STATIC_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_DYNAMIC_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_GUIDED_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_RUNTIME_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_STATIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_STATIC_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_DYNAMIC_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_GUIDED_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_RUNTIME_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_STATIC_NEXT' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_NEXT' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_STATIC_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_START' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_GUIDED_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_RUNTIME_START' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_STATIC_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_GUIDED_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_RUNTIME_NEXT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_STATIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_DYNAMIC_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_GUIDED_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_LOOP_RUNTIME_START' not
handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_LOOP_END_NOWAIT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_ORDERED_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_ORDERED_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_TASK' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SECTIONS_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SECTIONS_NEXT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_PARALLEL_SECTIONS_START' not handled
in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SECTIONS_END' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SECTIONS_END_NOWAIT' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SINGLE_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SINGLE_COPY_START' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_GOMP_SINGLE_COPY_END' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_START' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_COMMIT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_COMMIT_EH' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_ABORT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_IRREVOCABLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_MEMCPY' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_MEMMOVE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_MEMSET' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_GETTMCLONE_IRR' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_GETTMCLONE_SAFE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_MALLOC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_CALLOC' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_FREE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOG_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAR_LDOUBLE' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_STORE_WAW_LDOUBLE' not handled in
switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_1' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_2' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_4' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_8' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_FLOAT' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_DOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_M64' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_M128' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_M256' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAR_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RAW_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_TM_LOAD_RFW_LDOUBLE' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COMPLEX_MUL_MIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COMPLEX_MUL_MAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COMPLEX_DIV_MIN' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `BUILT_IN_COMPLEX_DIV_MAX' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:458: warning:
enumeration value `END_BUILTINS' not handled in switch
../../../../build/gcc/src/gcc/ipa-pure-const.c:1284: warning:
enumeration value `IPA_REF_ALIAS' not handled in switch
../../../../build/gcc/src/gcc/ipa-reference.c:458: warning:
enumeration value `IPA_REF_ALIAS' not handled in switch

             reply	other threads:[~2012-04-10 12:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-10 12:11 NightStrike [this message]
2012-04-10 12:38 ` Jonathan Wakely
2012-04-10 13:25   ` NightStrike
2012-04-10 13:56     ` Richard Guenther
2012-04-10 14:01       ` NightStrike
2012-04-10 14:43         ` Richard Guenther

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAF1jjLt9Vc54hwjZQWTT76HCBkNi+je2XfzDTWfq5_wv7o7f9Q@mail.gmail.com \
    --to=nightstrike@gmail.com \
    --cc=gcc@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).