Index: src/compiler/typer.h |
diff --git a/src/compiler/typer.h b/src/compiler/typer.h |
index bfa4bd85d926b15664c2d09f3017838d986005c1..2cd95970fcf9b3cde4f7ceafad702c6522ab701d 100644 |
--- a/src/compiler/typer.h |
+++ b/src/compiler/typer.h |
@@ -52,6 +52,10 @@ class Typer { |
Type* falsish; |
Type* integer; |
Type* weakint; |
+ Type* signed8_; |
+ Type* unsigned8_; |
+ Type* signed16_; |
+ Type* unsigned16_; |
Type* number_fun0_; |
Type* number_fun1_; |
Type* number_fun2_; |
@@ -73,8 +77,9 @@ class Typer { |
ZoneVector<Handle<Object> > weaken_max_limits_; |
DISALLOW_COPY_AND_ASSIGN(Typer); |
}; |
-} |
-} |
-} // namespace v8::internal::compiler |
+ |
+} // namespace compiler |
+} // namespace internal |
+} // namespace v8 |
#endif // V8_COMPILER_TYPER_H_ |