Commit ad27c127 authored by ager@chromium.org's avatar ager@chromium.org

Use correct type for the map-counters flag used in d8.

Review URL: http://codereview.chromium.org/6598063

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6989 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 78a21647
...@@ -405,7 +405,7 @@ void Shell::AddHistogramSample(void* histogram, int sample) { ...@@ -405,7 +405,7 @@ void Shell::AddHistogramSample(void* histogram, int sample) {
void Shell::Initialize() { void Shell::Initialize() {
Shell::counter_map_ = new CounterMap(); Shell::counter_map_ = new CounterMap();
// Set up counters // Set up counters
if (i::FLAG_map_counters != NULL) if (i::StrLength(i::FLAG_map_counters) != 0)
MapCounters(i::FLAG_map_counters); MapCounters(i::FLAG_map_counters);
if (i::FLAG_dump_counters) { if (i::FLAG_dump_counters) {
V8::SetCounterFunction(LookupCounter); V8::SetCounterFunction(LookupCounter);
......
...@@ -355,7 +355,7 @@ DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " ...@@ -355,7 +355,7 @@ DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
"debugger agent in another process") "debugger agent in another process")
DEFINE_bool(debugger_agent, false, "Enable debugger agent") DEFINE_bool(debugger_agent, false, "Enable debugger agent")
DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
DEFINE_string(map_counters, NULL, "Map counters to a file") DEFINE_string(map_counters, "", "Map counters to a file")
DEFINE_args(js_arguments, JSArguments(), DEFINE_args(js_arguments, JSArguments(),
"Pass all remaining arguments to the script. Alias for \"--\".") "Pass all remaining arguments to the script. Alias for \"--\".")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment