Index: test/cctest/test-log.cc |
diff --git a/test/cctest/test-log.cc b/test/cctest/test-log.cc |
index bf1151e59b4175b0c55e98083fcb1a5dc3badf7a..8bcb5f7d2942d4ab865a9adc8695d8f29b6899ad 100644 |
--- a/test/cctest/test-log.cc |
+++ b/test/cctest/test-log.cc |
@@ -60,7 +60,6 @@ class ScopedLoggerInitializer { |
: saved_log_(i::FLAG_log), |
saved_prof_lazy_(i::FLAG_prof_lazy), |
saved_prof_(i::FLAG_prof), |
- saved_prof_auto_(i::FLAG_prof_auto), |
temp_file_(NULL), |
// Need to run this prior to creating the scope. |
trick_to_run_init_flags_(init_flags_(prof_lazy)), |
@@ -76,7 +75,6 @@ class ScopedLoggerInitializer { |
if (temp_file_ != NULL) fclose(temp_file_); |
i::FLAG_prof_lazy = saved_prof_lazy_; |
i::FLAG_prof = saved_prof_; |
- i::FLAG_prof_auto = saved_prof_auto_; |
i::FLAG_log = saved_log_; |
} |
@@ -97,7 +95,6 @@ class ScopedLoggerInitializer { |
i::FLAG_log = true; |
i::FLAG_prof = true; |
i::FLAG_prof_lazy = prof_lazy; |
- i::FLAG_prof_auto = false; |
i::FLAG_logfile = i::Log::kLogToTemporaryFile; |
return prof_lazy; |
} |
@@ -105,7 +102,6 @@ class ScopedLoggerInitializer { |
const bool saved_log_; |
const bool saved_prof_lazy_; |
const bool saved_prof_; |
- const bool saved_prof_auto_; |
FILE* temp_file_; |
const bool trick_to_run_init_flags_; |
v8::HandleScope scope_; |