Index: src/hydrogen-bch.h |
diff --git a/src/hydrogen-bch.h b/src/hydrogen-bch.h |
deleted file mode 100644 |
index 708bbd436046c6535a0a140a72a652bd73815ee7..0000000000000000000000000000000000000000 |
--- a/src/hydrogen-bch.h |
+++ /dev/null |
@@ -1,33 +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_HYDROGEN_BCH_H_ |
-#define V8_HYDROGEN_BCH_H_ |
- |
-#include "src/hydrogen.h" |
- |
-namespace v8 { |
-namespace internal { |
- |
- |
-class HBoundsCheckHoistingPhase : public HPhase { |
- public: |
- explicit HBoundsCheckHoistingPhase(HGraph* graph) |
- : HPhase("H_Bounds checks hoisting", graph) { } |
- |
- void Run() { |
- HoistRedundantBoundsChecks(); |
- } |
- |
- private: |
- void HoistRedundantBoundsChecks(); |
- |
- DISALLOW_COPY_AND_ASSIGN(HBoundsCheckHoistingPhase); |
-}; |
- |
- |
-} // namespace internal |
-} // namespace v8 |
- |
-#endif // V8_HYDROGEN_BCE_H_ |