Index: src/frames.h |
diff --git a/src/frames.h b/src/frames.h |
index a75befb1fe1920b8eac4fed7c504179d7a396003..e250609fd9a8ec7b0305aac9f91c0566e1cbfb1d 100644 |
--- a/src/frames.h |
+++ b/src/frames.h |
@@ -443,7 +443,8 @@ class ArgumentsAdaptorFrame: public JavaScriptFrame { |
// the sentinel as its context, it is an arguments adaptor frame. It |
// must be tagged as a small integer to avoid GC issues. Crud. |
enum { |
- SENTINEL = (1 << kSmiTagSize) | kSmiTag |
+ SENTINEL = (1 << kSmiTagSize) | kSmiTag, |
+ NON_SENTINEL = ~SENTINEL |
}; |
virtual Type type() const { return ARGUMENTS_ADAPTOR; } |