Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: tools/llc/llc.cpp

Issue 8437024: Bitcode parsing modifications for streaming (Closed)
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/llc/llc.cpp
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 08ae8cdd205d7ec7a2c33c6a447e2d3732432af6..1aaee69d2e652aa1c9c7446ae7106cd2898fac73 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -547,7 +547,7 @@ int llc_main(int argc, char **argv) {
FunctionPassManager* P = static_cast<FunctionPassManager*>(PM);
P->doInitialization();
for (Module::iterator I = mod.begin(), E = mod.end(); I != E; ++I) {
- fprintf(stderr, "running %s\n", I->getName().str().c_str());
+ fprintf(stderr, "compiling %p (%s)\n", &(*I), I->getName().str().c_str());
P->run(*I);
}
P->doFinalization();
« lib/Bitcode/Writer/BitcodeWriter.cpp ('K') | « lib/Bitcode/Writer/BitcodeWriter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698