summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-03-01 20:36:30 +0800
committer Shih-wei Liao <sliao@google.com> 2012-03-01 12:21:54 -0800
commit4f00596ddd181cac1804ff49f45f3ae76244556b (patch)
tree9af05f71baac68ca05b99f08453848814e2f18e2
parent7f76761d8705b7aa5b1fdd2fc1ebb80250992f4c (diff)
Remove incorrect LOG(INFO).
Change-Id: Ied2808806dabc03e115402e8a453ce57c1318693
-rw-r--r--src/dex2oat.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/dex2oat.cc b/src/dex2oat.cc
index 65283bde69..d5d036f374 100644
--- a/src/dex2oat.cc
+++ b/src/dex2oat.cc
@@ -632,8 +632,6 @@ int dex2oat(int argc, char** argv) {
elf_filename = elf_filename_sp.ToString() + ".elf";
}
-
- LOG(INFO) << "ELF output: " << elf_filename;
#endif
Runtime::Options options;
@@ -716,12 +714,6 @@ int dex2oat(int argc, char** argv) {
// We wrote the oat file successfully, and want to keep it.
LOG(INFO) << "Oat file written successfully: " << oat_filename;
-#if defined(ART_USE_LLVM_COMPILER)
- LOG(INFO) << "ELF file written successfully: " << elf_filename;
- if (!bitcode_filename.empty()) {
- LOG(INFO) << "Bitcode file written successfully: " << bitcode_filename;
- }
-#endif
LOG(INFO) << "Image written successfully: " << image_filename;
return EXIT_SUCCESS;
}