[turbofan] Remove dead JSTypedLowering::EmptyFrameState.

R=jarin@chromium.org

Review-Url: https://codereview.chromium.org/2197163002
Cr-Commit-Position: refs/heads/master@{#38205}
This commit is contained in:
mstarzinger 2016-08-01 05:00:59 -07:00 committed by Commit bot
parent 95cae2eb35
commit df61ffeab3
2 changed files with 0 additions and 10 deletions

View File

@ -2125,14 +2125,6 @@ Reduction JSTypedLowering::Reduce(Node* node) {
return NoChange();
}
Node* JSTypedLowering::EmptyFrameState() {
return graph()->NewNode(
common()->FrameState(BailoutId::None(), OutputFrameStateCombine::Ignore(),
nullptr),
jsgraph()->EmptyStateValues(), jsgraph()->EmptyStateValues(),
jsgraph()->EmptyStateValues(), jsgraph()->NoContextConstant(),
jsgraph()->UndefinedConstant(), graph()->start());
}
Factory* JSTypedLowering::factory() const { return jsgraph()->factory(); }

View File

@ -89,8 +89,6 @@ class JSTypedLowering final : public AdvancedReducer {
Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
const Operator* shift_op);
Node* EmptyFrameState();
Factory* factory() const;
Graph* graph() const;
JSGraph* jsgraph() const { return jsgraph_; }