diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
commit | 32761a6cee1d0dee366b885b7b9c777e67885688 (patch) | |
tree | d6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp | |
parent | a4e969f4965059196ca948db781e52f7cfebf19e (diff) | |
download | WebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz |
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp b/Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp index 9d8c710de..ca770681a 100644 --- a/Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp +++ b/Source/JavaScriptCore/dfg/DFGAtTailAbstractState.cpp @@ -28,13 +28,12 @@ #if ENABLE(DFG_JIT) -#include "JSCInlines.h" +#include "Operations.h" namespace JSC { namespace DFG { -AtTailAbstractState::AtTailAbstractState(Graph& graph) - : m_graph(graph) - , m_block(0) +AtTailAbstractState::AtTailAbstractState() + : m_block(0) { } @@ -48,7 +47,7 @@ void AtTailAbstractState::createValueForNode(Node* node) AbstractValue& AtTailAbstractState::forNode(Node* node) { HashMap<Node*, AbstractValue>::iterator iter = m_block->ssa->valuesAtTail.find(node); - DFG_ASSERT(m_graph, node, iter != m_block->ssa->valuesAtTail.end()); + ASSERT(iter != m_block->ssa->valuesAtTail.end()); return iter->value; } |