- 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
This commit is contained in:
iposva@chromium.org 2010-04-21 12:16:36 +00:00
parent 0710de75c0
commit 1a31f9a2f7

View File

@ -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; \