[PGO] Do not attach VP metadata if value count at site is 0 [NFC]
authorBetul Buyukkurt <betulb@codeaurora.org>
Thu, 14 Apr 2016 16:25:45 +0000 (16:25 +0000)
committerBetul Buyukkurt <betulb@codeaurora.org>
Thu, 14 Apr 2016 16:25:45 +0000 (16:25 +0000)
llvm-svn: 266335

llvm/lib/ProfileData/InstrProf.cpp

index 7f4a87a..f1a6ce9 100644 (file)
@@ -636,6 +636,8 @@ void annotateValueSite(Module &M, Instruction &Inst,
                        InstrProfValueKind ValueKind, uint32_t SiteIdx,
                        uint32_t MaxMDCount) {
   uint32_t NV = InstrProfR.getNumValueDataForSite(ValueKind, SiteIdx);
+  if (!NV)
+    return;
 
   uint64_t Sum = 0;
   std::unique_ptr<InstrProfValueData[]> VD =