Index: tools/clang/blink_gc_plugin/RecordInfo.h |
diff --git a/tools/clang/blink_gc_plugin/RecordInfo.h b/tools/clang/blink_gc_plugin/RecordInfo.h |
index eaf7c749be4ca76583ced1d48dd544b3ddad96e9..f86e948e67319fce60e38b6ae700a3f1985fb08c 100644 |
--- a/tools/clang/blink_gc_plugin/RecordInfo.h |
+++ b/tools/clang/blink_gc_plugin/RecordInfo.h |
@@ -113,6 +113,9 @@ class RecordInfo { |
Bases* bases_; |
Fields* fields_; |
+ enum CachedBool { kFalse = 0, kTrue = 1, kNotComputed = 2 }; |
+ CachedBool is_stack_allocated_; |
+ |
bool determined_trace_methods_; |
clang::CXXMethodDecl* trace_method_; |
clang::CXXMethodDecl* trace_dispatch_method_; |