Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: fusl/src/math/ilogbl.c

Issue 1581793002: Remove -Wno-unknown-pragmas from fusl build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: comment to clang bug Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/math/ilogbf.c ('k') | fusl/src/math/llrintl.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/math/ilogbl.c
diff --git a/fusl/src/math/ilogbl.c b/fusl/src/math/ilogbl.c
index 7b1a9cf8d007ff16c1d6fe072916a5a8a226e3e3..467929c32ffc566a7ee90618ab68e0429db30b94 100644
--- a/fusl/src/math/ilogbl.c
+++ b/fusl/src/math/ilogbl.c
@@ -9,7 +9,7 @@ int ilogbl(long double x)
#elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
int ilogbl(long double x)
{
- #pragma STDC FENV_ACCESS ON
+ PRAGMA_STDC_FENV_ACCESS_ON
union ldshape u = {x};
uint64_t m = u.i.m;
int e = u.i.se & 0x7fff;
« no previous file with comments | « fusl/src/math/ilogbf.c ('k') | fusl/src/math/llrintl.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698