From: Chris Lattner Date: Tue, 3 Dec 2002 19:42:26 +0000 (+0000) Subject: Disable timing of bytecode loader X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9ec736860a258708c61a533f2095b7c3fd051389;p=oota-llvm.git Disable timing of bytecode loader git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4887 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index 4669c66b038..52ae6c88fab 100644 --- a/tools/analyze/analyze.cpp +++ b/tools/analyze/analyze.cpp @@ -109,7 +109,9 @@ int main(int argc, char **argv) { 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";