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

Unified Diff: runtime/platform/floating_point_win.h

Issue 11411188: Fix floating point issues on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Marked exp_A01_t01 as failing test on Linux and Mac systems only. Created 8 years, 1 month 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
Index: runtime/platform/floating_point_win.h
diff --git a/runtime/bin/dbg_connection_win.cc b/runtime/platform/floating_point_win.h
similarity index 50%
copy from runtime/bin/dbg_connection_win.cc
copy to runtime/platform/floating_point_win.h
index 505e970a97be8533e799e1c6955fb9f9cf15332c..e2c2e13ce9bbab7b8da304b1b36bbb23703e5def 100644
--- a/runtime/bin/dbg_connection_win.cc
+++ b/runtime/platform/floating_point_win.h
@@ -2,9 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#include "bin/dbg_connection.h"
+#ifndef PLATFORM_FLOATING_POINT_WIN_H_
+#define PLATFORM_FLOATING_POINT_WIN_H_
-void DebuggerConnectionImpl::StartHandler(int port_number) {
- FATAL("Debugger wire protocol not yet implemented on Linux\n");
-}
+double atan2_ieee(double x, double y);
+double modulo(double x, double y);
+double round(double x);
+#endif // PLATFORM_FLOATING_POINT_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698