Changeset 179816 in webkit
- Timestamp:
- Feb 8, 2015, 6:40:09 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
dfg/DFGByteCodeParser.cpp (modified) (1 diff)
-
dfg/DFGByteCodeParser.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r179815 r179816 1 2015-02-08 Benjamin Poulain <benjamin@webkit.org> 2 3 Remove useless declarations and a stale comment from DFGByteCodeParser.h 4 https://bugs.webkit.org/show_bug.cgi?id=141361 5 6 Reviewed by Darin Adler. 7 8 The comment refers to the original form of the ByteCodeParser: 9 parse(Graph&, JSGlobalData*, CodeBlock*, unsigned startIndex); 10 11 That form is long dead, the comment is more misleading than anything. 12 13 * dfg/DFGByteCodeParser.cpp: 14 * dfg/DFGByteCodeParser.h: 15 1 16 2015-02-08 Benjamin Poulain <benjamin@webkit.org> 2 17 -
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r179478 r179816 36 36 #include "DFGArrayMode.h" 37 37 #include "DFGCapabilities.h" 38 #include "DFGGraph.h" 38 39 #include "DFGJITCode.h" 39 40 #include "GetByIdStatus.h" -
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.h
r153144 r179816 29 29 #if ENABLE(DFG_JIT) 30 30 31 #include "DFGGraph.h" 31 namespace JSC { namespace DFG { 32 32 33 namespace JSC { 33 class Graph; 34 34 35 class CodeBlock;36 class VM;37 38 namespace DFG {39 40 // Populate the Graph with a basic block of code from the CodeBlock,41 // starting at the provided bytecode index.42 35 bool parse(Graph&); 43 36
Note:
See TracChangeset
for help on using the changeset viewer.