Remove several unused variables.
[oota-llvm.git] / tools / llvm-prof / llvm-prof.cpp
index 52d0130069467bc443bdeb0b98f8049426611c1f..6c340b89c65c2bc49f921ccffee9a2496d3abe9b 100644 (file)
@@ -147,9 +147,6 @@ char ProfileInfoPrinterPass::ID = 0;
 
 bool ProfileInfoPrinterPass::runOnModule(Module &M) {
   ProfileInfo &PI = getAnalysis<ProfileInfo>();
-  std::map<const Function  *, unsigned> FuncFreqs;
-  std::map<const BasicBlock*, unsigned> BlockFreqs;
-  std::map<ProfileInfo::Edge, unsigned> EdgeFreqs;
 
   // Output a report. Eventually, there will be multiple reports selectable on
   // the command line, for now, just keep things simple.