Commit 129a2ba0 authored by vegorov@chromium.org's avatar vegorov@chromium.org

Avoid uninitialized member warning on gcc 4.3.4

Patch by Bert Belder.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8791 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 6f6c882e
...@@ -1459,7 +1459,7 @@ void LCodeGen::DoBranch(LBranch* instr) { ...@@ -1459,7 +1459,7 @@ void LCodeGen::DoBranch(LBranch* instr) {
DeoptimizeIf(zero, instr->environment()); DeoptimizeIf(zero, instr->environment());
} }
Register map; Register map = no_reg;
if (expected.NeedsMap()) { if (expected.NeedsMap()) {
map = ToRegister(instr->TempAt(0)); map = ToRegister(instr->TempAt(0));
ASSERT(!map.is(reg)); ASSERT(!map.is(reg));
......
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