Chromium Code Reviews| Index: src/typing-asm.h |
| diff --git a/src/typing-asm.h b/src/typing-asm.h |
| index 09eacaa0ae07717e0336916d71986ce99f2dd88a..d2e34050d183fd6789e6005e174421cf234a1556 100644 |
| --- a/src/typing-asm.h |
| +++ b/src/typing-asm.h |
| @@ -2,8 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef V8_TYPING_ASM_H_ |
| -#define V8_TYPING_ASM_H_ |
| +#ifndef SRC_TYPING_ASM_H_ |
| +#define SRC_TYPING_ASM_H_ |
| + |
| +#include <string> |
| #include "src/allocation.h" |
| #include "src/ast/ast-type-bounds.h" |
| @@ -11,6 +13,7 @@ |
| #include "src/effects.h" |
| #include "src/type-info.h" |
| #include "src/types.h" |
| +#include "src/wasm/asm-types.h" |
| #include "src/zone.h" |
| namespace v8 { |
| @@ -19,6 +22,10 @@ namespace internal { |
| class TypeCache; |
| class AsmTyper : public AstVisitor { |
| + private: |
| + // TODO(jpp): remove this typedef. |
| + // using Type = wasm::AsmType; |
|
bradnelson
2016/06/10 05:59:51
Leftover?
John
2016/06/13 14:20:47
Done.
|
| + |
| public: |
| explicit AsmTyper(Isolate* isolate, Zone* zone, Script* script, |
| FunctionLiteral* root); |
| @@ -185,4 +192,4 @@ class AsmTyper : public AstVisitor { |
| } // namespace internal |
| } // namespace v8 |
| -#endif // V8_TYPING_ASM_H_ |
| +#endif // SRC_TYPING_ASM_H_ |