diff options
author | Stan Shebs <stanshebs@google.com> | 2018-01-24 11:32:36 -0800 |
---|---|---|
committer | Stan Shebs <stanshebs@google.com> | 2019-04-30 15:45:23 -0700 |
commit | 96ba247eed270757b8ddd2ccb06760393af3e6ea (patch) | |
tree | 6005bb984d5d6491ccbec461905fefbc706119be | |
parent | 1ba243089016b2797df5edfcb3e8525ec02b0729 (diff) | |
download | glibc-96ba247eed270757b8ddd2ccb06760393af3e6ea.tar.gz glibc-96ba247eed270757b8ddd2ccb06760393af3e6ea.tar.xz glibc-96ba247eed270757b8ddd2ccb06760393af3e6ea.zip |
Comment out debugging hack that pollutes namespace
-rw-r--r-- | sysdeps/x86/bits/floatn.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/x86/bits/floatn.h b/sysdeps/x86/bits/floatn.h index 2a2cd2b1fb..16c73ed4bd 100644 --- a/sysdeps/x86/bits/floatn.h +++ b/sysdeps/x86/bits/floatn.h @@ -21,7 +21,9 @@ #include <features.h> +#if 0 /* for macro expansion debugging */ #define capture(sym, val) extern int sym[val] +#endif /* Defined to 1 if the current compiler invocation provides a floating-point type with the IEEE 754 binary128 format, and this @@ -57,8 +59,10 @@ #ifndef __ASSEMBLER__ +#if 0 /* for macro expansion debugging */ capture(i_have_float128, __HAVE_FLOAT128); capture(i_have_distinct_float128, __HAVE_DISTINCT_FLOAT128); +#endif /* Defined to concatenate the literal suffix to be used with _Float128 types, if __HAVE_FLOAT128 is 1. */ |