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

Side by Side Diff: test/win/compiler-flags/floating-point-model-fast.cc

Issue 720153005: ninja win: Add msvs emulation for FloatingPointModel (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Better test, set /fp:precise by default Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014 Google Inc. All rights reserved. 1 // Copyright (c) 2014 Google Inc. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifdef _M_FP_PRECISE
6 #error
7 #endif
8
9 #ifdef _M_FP_STRICT
10 #error
11 #endif
12
13 #ifndef _M_FP_FAST
14 #error
15 #endif
16
5 int main() { 17 int main() {
6 return 0; 18 return 0;
7 } 19 }
OLDNEW
« no previous file with comments | « test/win/compiler-flags/floating-point-model.gyp ('k') | test/win/compiler-flags/floating-point-model-precise.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698