Commit 1a31f9a2 authored by iposva@chromium.org's avatar iposva@chromium.org

- Fix unitialized variable error found by compiler warning.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4462 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 0710de75
......@@ -1363,7 +1363,7 @@ static void ClearCodeKindStatistics() {
static void ReportCodeKindStatistics() {
const char* table[Code::NUMBER_OF_KINDS];
const char* table[Code::NUMBER_OF_KINDS] = { NULL };
#define CASE(name) \
case Code::name: table[Code::name] = #name; \
......
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