Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1207)

Unified Diff: src/type-hints.h

Issue 2342853002: [TypeFeedbackVector] special ic slots for interpreter compare/binary ops. (Closed)
Patch Set: Code comments. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/type-hints.h
diff --git a/src/compiler/type-hints.h b/src/type-hints.h
similarity index 91%
rename from src/compiler/type-hints.h
rename to src/type-hints.h
index d41b421626777e3caee8dacab822005d97d4d3fd..cdf470956f6c0830ed46f22cba7b0548ba70c1b7 100644
--- a/src/compiler/type-hints.h
+++ b/src/type-hints.h
@@ -2,15 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_COMPILER_TYPE_HINTS_H_
-#define V8_COMPILER_TYPE_HINTS_H_
+#ifndef V8_TYPE_HINTS_H_
+#define V8_TYPE_HINTS_H_
#include "src/base/flags.h"
#include "src/utils.h"
namespace v8 {
namespace internal {
-namespace compiler {
// Type hints for an binary operation.
enum class BinaryOperationHint : uint8_t {
@@ -67,8 +66,7 @@ std::ostream& operator<<(std::ostream&, ToBooleanHints);
DEFINE_OPERATORS_FOR_FLAGS(ToBooleanHints)
-} // namespace compiler
} // namespace internal
} // namespace v8
-#endif // V8_COMPILER_TYPE_HINTS_H_
+#endif // V8_TYPE_HINTS_H_

Powered by Google App Engine
This is Rietveld 408576698