Fixed printing of HTypeofIsAndBranch instruction for non-ASCII type literals.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9639 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
svenpanne@chromium.org 2011-10-14 13:16:23 +00:00
parent 948a323819
commit 8856b62331

View File

@ -783,8 +783,7 @@ void HHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
void HTypeofIsAndBranch::PrintDataTo(StringStream* stream) {
value()->PrintNameTo(stream);
stream->Add(" == ");
stream->Add(type_literal_->GetFlatContent().ToAsciiVector());
stream->Add(" == %o", *type_literal_);
HControlInstruction::PrintDataTo(stream);
}