From 6e73272f093e9dc045c08baae57eebb5dcd6e044 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 13 Jan 2015 19:11:14 +0000 Subject: Revert "ART: dex2oat flag for HGraphVisualizer dump file" Breaks compilation of tests. This reverts commit 54953dfdcb3bb8896d8af2d20adef84fb740ce77. Change-Id: I868b876c3130be61f1169c5fccdffc0368bee11e --- compiler/optimizing/optimizing_compiler.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'compiler/optimizing') diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index eaecbb04ae..692d452f54 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -149,12 +149,11 @@ void OptimizingCompiler::Init() { // Enable C1visualizer output. Must be done in Init() because the compiler // driver is not fully initialized when passed to the compiler's constructor. CompilerDriver* driver = GetCompilerDriver(); - const std::string cfg_file_name = driver->GetDumpCfgFileName(); - if (!cfg_file_name.empty()) { + if (driver->GetDumpPasses()) { CHECK_EQ(driver->GetThreadCount(), 1U) << "Graph visualizer requires the compiler to run single-threaded. " << "Invoke the compiler with '-j1'."; - visualizer_output_.reset(new std::ofstream(cfg_file_name)); + visualizer_output_.reset(new std::ofstream("art.cfg")); } } -- cgit v1.2.3-59-g8ed1b