diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-03 19:42:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-03 19:42:26 +0000 |
commit | 9ec736860a258708c61a533f2095b7c3fd051389 (patch) | |
tree | f727fccf460b735efe2107696f28b69b3deb4e54 /tools/analyze/analyze.cpp | |
parent | 149a5203a91e3794cc74c04ffbe811d744eecabd (diff) | |
download | external_llvm-9ec736860a258708c61a533f2095b7c3fd051389.zip external_llvm-9ec736860a258708c61a533f2095b7c3fd051389.tar.gz external_llvm-9ec736860a258708c61a533f2095b7c3fd051389.tar.bz2 |
Disable timing of bytecode loader
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4887 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze/analyze.cpp')
-rw-r--r-- | tools/analyze/analyze.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index 4669c66..52ae6c8 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"; |