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

Unified Diff: src/ia32/lithium-gap-resolver-ia32.cc

Issue 6286135: Make sure there are no errors when compiling V8 using VS2005 project files.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 10 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
Index: src/ia32/lithium-gap-resolver-ia32.cc
===================================================================
--- src/ia32/lithium-gap-resolver-ia32.cc (revision 6654)
+++ src/ia32/lithium-gap-resolver-ia32.cc (working copy)
@@ -31,14 +31,20 @@
namespace v8 {
namespace internal {
-LGapResolver::LGapResolver(LCodeGen* owner)
+#ifdef _MSC_VER
+ #pragma warning(push)
+ #pragma warning(disable : 4351)
+#endif // _MSC_VER
William Hesse 2011/02/05 19:38:12 Can't we disable the warning as a setting in the V
+ LGapResolver::LGapResolver(LCodeGen* owner)
: cgen_(owner),
moves_(32),
source_uses_(),
destination_uses_(),
spilled_register_(-1) {}
+#ifdef _MSC_VER
+ #pragma warning(pop)
+#endif // _MSC_VER
-
void LGapResolver::Resolve(LParallelMove* parallel_move) {
ASSERT(HasBeenReset());
// Build up a worklist of moves.

Powered by Google App Engine
This is Rietveld 408576698