From f96051cd2d8dae92876ebcd9947e290d5d98893c Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Wed, 8 Aug 2012 12:42:47 -0600 Subject: [PATCH] Fix typo, bug 769911. r=luke --- js/src/methodjit/PolyIC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/methodjit/PolyIC.cpp b/js/src/methodjit/PolyIC.cpp index ea78c0b8957..fa1d55b0e36 100644 --- a/js/src/methodjit/PolyIC.cpp +++ b/js/src/methodjit/PolyIC.cpp @@ -1284,7 +1284,7 @@ class GetPropCompiler : public PICStubCompiler Jump shapeGuard = masm.branchPtr(Assembler::NotEqual, Address(pic.shapeReg, JSObject::offsetOfShape()), ImmPtr(expando->lastProperty())); - if (!shapeMismatches.append(expandoGuard)) + if (!shapeMismatches.append(shapeGuard)) return error(); } else { Jump expandoGuard = masm.testUndefined(Assembler::NotEqual, expandoAddress);