count the number of relocations performed.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22480 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp
index 47adee0..b38e778 100644
--- a/lib/ExecutionEngine/JIT/JITEmitter.cpp
+++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp
@@ -30,6 +30,7 @@
 
 namespace {
   Statistic<> NumBytes("jit", "Number of bytes of machine code compiled");
+  Statistic<> NumRelos("jit", "Number of relocations applied");
   JIT *TheJIT = 0;
 }
 
@@ -391,6 +392,8 @@
   NumBytes += CurByte-CurBlock;
 
   if (!Relocations.empty()) {
+    NumRelos += Relocations.size();
+
     // Resolve the relocations to concrete pointers.
     for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
       MachineRelocation &MR = Relocations[i];