Revision: 6818
Author: [email protected]
Date: Wed Feb 16 05:37:26 2011
Log: Another attempt to fix win64 compile.
BUG=
TEST=
Review URL: http://codereview.chromium.org/6525051
http://code.google.com/p/v8/source/detail?r=6818
Modified:
/branches/bleeding_edge/test/cctest/test-parsing.cc
=======================================
--- /branches/bleeding_edge/test/cctest/test-parsing.cc Wed Feb 16 05:24:40
2011
+++ /branches/bleeding_edge/test/cctest/test-parsing.cc Wed Feb 16 05:37:26
2011
@@ -321,15 +321,16 @@
data->Initialize();
- intptr_t first_function = strstr(program, "function") - program;
- intptr_t first_lbrace = first_function + strlen("function () ");
+ int first_function =
+ static_cast<int>(strstr(program, "function") - program);
+ int first_lbrace = first_function + strlen("function () ");
CHECK_EQ('{', program[first_lbrace]);
i::FunctionEntry entry1 = data->GetFunctionEntry(first_lbrace);
CHECK(!entry1.is_valid());
- intptr_t second_function =
- strstr(program + first_lbrace, "function") - program;
- intptr_t second_lbrace = second_function + strlen("function () ");
+ int second_function =
+ static_cast<int>(strstr(program + first_lbrace, "function") -
program);
+ int second_lbrace = second_function + strlen("function () ");
CHECK_EQ('{', program[second_lbrace]);
i::FunctionEntry entry2 = data->GetFunctionEntry(second_lbrace);
CHECK(entry2.is_valid());
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev