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

Side by Side Diff: src/base/math.h

Issue 863633002: Use signaling NaN for holes in fixed double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix phi? Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_BASE_MATH_H_
6 #define V8_BASE_MATH_H_
7
8 namespace v8 {
9 namespace base {
10
11 bool IsQuietNaN(float x);
12 bool IsQuietNaN(double x);
13 bool IsSignalingNaN(float x);
14 bool IsSignalingNaN(double x);
15
16 } // namespace base
17 } // namespace v8
18
19 #endif // V8_BASE_MATH_H_
OLDNEW
« src/arm64/lithium-codegen-arm64.cc ('K') | « src/assembler.cc ('k') | src/base/math.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698