Files
semi-libc/src
Rich Felker 78691fa76d make new math code compatible with unused variable warning/error
commit b50d315fd2 introduced
fp_force_eval implemented by default with a dead store to a volatile
variable. unfortunately introduces warnings with -Wunused-variable and
breaks the ability to use -Werror with the default warning options set
by configure when warnings are enabled.

we could just call fp_barrier instead, but that results in a spurious
load after the store due to volatile semantics.

the fix committed here avoids the load. it will still produce warnings
without -Wno-unused-but-set-variable, but that's part of our default
warning profile, and there are already other locations in the source
where an unused variable warning will occur without it.
2019-04-20 18:55:05 -04:00
..
2018-09-12 14:34:37 -04:00
2018-09-12 14:34:37 -04:00
2018-10-10 16:15:51 -04:00
2018-09-12 14:34:37 -04:00
2019-04-17 23:45:40 -04:00
2018-09-20 17:57:47 -04:00
2018-06-19 13:24:05 -04:00