diff options
Diffstat (limited to 'deps/v8/src/crankshaft/hydrogen-load-elimination.h')
-rw-r--r-- | deps/v8/src/crankshaft/hydrogen-load-elimination.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/deps/v8/src/crankshaft/hydrogen-load-elimination.h b/deps/v8/src/crankshaft/hydrogen-load-elimination.h deleted file mode 100644 index e5656459c9..0000000000 --- a/deps/v8/src/crankshaft/hydrogen-load-elimination.h +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2013 the V8 project authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef V8_CRANKSHAFT_HYDROGEN_LOAD_ELIMINATION_H_ -#define V8_CRANKSHAFT_HYDROGEN_LOAD_ELIMINATION_H_ - -#include "src/crankshaft/hydrogen.h" - -namespace v8 { -namespace internal { - -class HLoadEliminationPhase : public HPhase { - public: - explicit HLoadEliminationPhase(HGraph* graph) - : HPhase("H_Load elimination", graph) { } - - void Run(); - - private: - void EliminateLoads(HBasicBlock* block); -}; - - -} // namespace internal -} // namespace v8 - -#endif // V8_CRANKSHAFT_HYDROGEN_LOAD_ELIMINATION_H_ |