Bug 75584 - Invalid ASSERT() in DFGRepatch.cpp near line 385
Summary: Invalid ASSERT() in DFGRepatch.cpp near line 385
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Michael Saboff
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-04 15:31 PST by Michael Saboff
Modified: 2012-01-04 16:12 PST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Saboff 2012-01-04 15:31:18 PST
In DFGRepatch.cpp, tryBuildGetByIDProtoList() near line 385, the ASSERT has one equal '=' and not two '=='.

         stubInfo.stubRoutine = MacroAssemblerCodeRef();
         stubInfo.initGetByIdProtoList(polymorphicStructureList, 1);
     } else {
        ASSERT(stubInfo.accessType = access_get_by_id_proto_list);
         polymorphicStructureList = stubInfo.u.getByIdProtoList.structureList;
         listIndex = stubInfo.u.getByIdProtoList.listSize;
     }
Comment 1 Michael Saboff 2012-01-04 16:12:03 PST
Committed r104090: <http://trac.webkit.org/changeset/104090>