[llvm-commits] CVS: llvm/tools/analyze/analyze.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Dec 3 13:43:01 PST 2002
Changes in directory llvm/tools/analyze:
analyze.cpp updated: 1.48 -> 1.49
---
Log message:
Disable timing of bytecode loader
---
Diffs of the changes:
Index: llvm/tools/analyze/analyze.cpp
diff -u llvm/tools/analyze/analyze.cpp:1.48 llvm/tools/analyze/analyze.cpp:1.49
--- llvm/tools/analyze/analyze.cpp:1.48 Sun Nov 10 00:55:02 2002
+++ llvm/tools/analyze/analyze.cpp Tue Dec 3 13:42:26 2002
@@ -109,7 +109,9 @@
Module *CurMod = 0;
try {
+#if 0
TimeRegion RegionTimer(BytecodeLoadTimer);
+#endif
CurMod = ParseBytecodeFile(InputFilename);
if (!CurMod && !(CurMod = ParseAssemblyFile(InputFilename))){
std::cerr << argv[0] << ": input file didn't read correctly.\n";
More information about the llvm-commits
mailing list