Changeset 230964 in webkit for trunk/Source/JavaScriptCore/dfg/DFGObjectAllocationSinkingPhase.cpp
- Timestamp:
- Apr 24, 2018, 11:54:47 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGObjectAllocationSinkingPhase.cpp
r229893 r230964 1 1 /* 2 * Copyright (C) 2015 Apple Inc. All rights reserved.2 * Copyright (C) 2015-2018 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 961 961 if (Node* value = heapResolve(location)) { 962 962 if (allocation->structures().isSubsetOf(validStructures)) 963 node->replaceWith (m_graph,value);963 node->replaceWithWithoutChecks(value); 964 964 else { 965 965 Node* structure = heapResolve(PromotedHeapLocation(allocation->identifier(), StructurePLoc));
Note:
See TracChangeset
for help on using the changeset viewer.