Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(435)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: fusl/src/math/nearbyintf.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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
fusl/BUILD.gn
fusl/src/internal/libm.h
fusl/src/math/fma.c
fusl/src/math/fmaf.c
fusl/src/math/fmal.c
fusl/src/math/ilogb.c
fusl/src/math/ilogbf.c
fusl/src/math/ilogbl.c
fusl/src/math/llrintl.c
fusl/src/math/lrintl.c
fusl/src/math/nearbyint.c
fusl/src/math/nearbyintf.c
fusl/src/math/nearbyintl.c
View unified diff
|
Download patch
« no previous file with comments
|
« fusl/src/math/nearbyint.c
('k') |
fusl/src/math/nearbyintl.c »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 #include <fenv.h>
1 #include <fenv.h>
2 #include <math.h>
2 #include <math.h>
3
#include "libm.h"
3
4
4 float nearbyintf(float x)
5 float nearbyintf(float x)
5 {
6 {
6 #ifdef FE_INEXACT
7 #ifdef FE_INEXACT
7
»
#pragma
STDC
FENV_ACCESS
ON
8
»
PRAGMA_
STDC
_
FENV_ACCESS
_
ON
8 int e;
9 int e;
9
10
10 e = fetestexcept(FE_INEXACT);
11 e = fetestexcept(FE_INEXACT);
11 #endif
12 #endif
12 x = rintf(x);
13 x = rintf(x);
13 #ifdef FE_INEXACT
14 #ifdef FE_INEXACT
14 if (!e)
15 if (!e)
15 feclearexcept(FE_INEXACT);
16 feclearexcept(FE_INEXACT);
16 #endif
17 #endif
17 return x;
18 return x;
18 }
19 }
OLD
NEW
« no previous file with comments
|
« fusl/src/math/nearbyint.c
('k') |
fusl/src/math/nearbyintl.c »
('j') |
no next file with comments »
Issue 1581793002: Remove -Wno-unknown-pragmas from fusl build (Closed)
Created 4 years, 11 months ago by kulakowski
Modified 4 years, 11 months ago
Reviewers: viettrungluu
Base URL: git@github.com:domokit/mojo.git@master
Comments: 4
This is Rietveld
408576698