| Index: src/compiler/types.h
|
| diff --git a/src/types.h b/src/compiler/types.h
|
| similarity index 99%
|
| rename from src/types.h
|
| rename to src/compiler/types.h
|
| index cd8b937e4b1e51c0d70848b2748496af6a9e31ee..a3cfe18180fa9905ec631ef0840d4e5e6e1eae8a 100644
|
| --- a/src/types.h
|
| +++ b/src/compiler/types.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef V8_TYPES_H_
|
| -#define V8_TYPES_H_
|
| +#ifndef V8_COMPILER_TYPES_H_
|
| +#define V8_COMPILER_TYPES_H_
|
|
|
| #include "src/conversions.h"
|
| #include "src/handles.h"
|
| @@ -242,7 +242,7 @@ namespace internal {
|
| * occur as part of PlainNumber.
|
| */
|
|
|
| -#define PROPER_BITSET_TYPE_LIST(V) \
|
| +#define PROPER_BITSET_TYPE_LIST(V) \
|
| REPRESENTATION_BITSET_TYPE_LIST(V) \
|
| SEMANTIC_BITSET_TYPE_LIST(V)
|
|
|
| @@ -336,12 +336,7 @@ class TypeBase {
|
| protected:
|
| friend class Type;
|
|
|
| - enum Kind {
|
| - kConstant,
|
| - kTuple,
|
| - kUnion,
|
| - kRange
|
| - };
|
| + enum Kind { kConstant, kTuple, kUnion, kRange };
|
|
|
| Kind kind() const { return kind_; }
|
| explicit TypeBase(Kind kind) : kind_(kind) {}
|
| @@ -779,4 +774,4 @@ struct Bounds {
|
| } // namespace internal
|
| } // namespace v8
|
|
|
| -#endif // V8_TYPES_H_
|
| +#endif // V8_COMPILER_TYPES_H_
|
|
|