Revision: 24173
Author: [email protected]
Date: Wed Sep 24 09:32:28 2014 UTC
Log: Fix windows build.
[email protected]
Review URL: https://codereview.chromium.org/598943002
https://code.google.com/p/v8/source/detail?r=24173
Modified:
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
=======================================
---
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
Wed Sep 24 09:28:56 2014 UTC
+++
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
Wed Sep 24 09:32:28 2014 UTC
@@ -428,9 +428,9 @@
SimplifiedLoweringTester<Object*> t;
Node* ptr = GetBaseNode(&t);
Node* load = t.LoadElement(access, ptr, t.Int32Constant(from_index),
- t.Int32Constant(num_elements));
+
t.Int32Constant(static_cast<int>(num_elements)));
t.StoreElement(access, ptr, t.Int32Constant(to_index),
- t.Int32Constant(num_elements), load);
+ t.Int32Constant(static_cast<int>(num_elements)), load);
t.Return(t.jsgraph.TrueConstant());
t.LowerAllNodes();
t.GenerateCode();
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.