Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derekschrock/18a4e1d2fa6fa7c09b34fa6ef2597330 to your computer and use it in GitHub Desktop.
Save derekschrock/18a4e1d2fa6fa7c09b34fa6ef2597330 to your computer and use it in GitHub Desktop.
clang-devel -I/usr/local/include/ -O2 -g -fsanitize=undefined,implicit-integer-truncation,implicit-integer-arithmetic-value-change,implicit-conversion,integer,nullability,object-size,local-bounds -Wno-pointer-sign -fno-strict-aliasing -fwrapv -Wwrite-strings -W -Wall -Wextra -Wno-unused -Wno-unused-parameter -I./../include -I../include -c ircaux.c
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'volatile float' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
|| isfinite(sval) == 0
^
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:86:14: note: expanded from macro '__fp_type_select'
volatile float: f(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'volatile double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:87:14: note: expanded from macro '__fp_type_select'
volatile double: d(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'volatile long double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:88:14: note: expanded from macro '__fp_type_select'
volatile long double: ld(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const volatile float' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:89:20: note: expanded from macro '__fp_type_select'
volatile const float: f(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const volatile double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:90:20: note: expanded from macro '__fp_type_select'
volatile const double: d(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const volatile long double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:91:20: note: expanded from macro '__fp_type_select'
volatile const long double: ld(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const float' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:92:11: note: expanded from macro '__fp_type_select'
const float: f(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:93:11: note: expanded from macro '__fp_type_select'
const double: d(x), ^
ircaux.c:2748:36: warning: due to lvalue conversion of the controlling expression, association of type 'const long double' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
/usr/include/math.h:111:21: note: expanded from macro 'isfinite'
#define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
^
/usr/include/math.h:94:11: note: expanded from macro '__fp_type_select'
const long double: ld(x))
^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment