XFAIL the test cases for r186044 on Hexagon
[oota-llvm.git] / include / llvm / Analysis / BlockFrequencyInfo.h
index 9e698a9f4bb1d065f4c0520e6444210163a5ffaa..267e43b5d9c1d889c1e4adf31fea013fa859bf67 100644 (file)
@@ -43,11 +43,11 @@ public:
   void print(raw_ostream &O, const Module *M) const;
 
   /// getblockFreq - Return block frequency. Return 0 if we don't have the
-  /// information. Please note that initial frequency is equal to 1024. It means
-  /// that we should not rely on the value itself, but only on the comparison to
-  /// the other block frequencies. We do this to avoid using of floating points.
-  ///
-  BlockFrequency getBlockFreq(BasicBlock *BB) const;
+  /// information. Please note that initial frequency is equal to ENTRY_FREQ. It
+  /// means that we should not rely on the value itself, but only on the
+  /// comparison to the other block frequencies. We do this to avoid using of
+  /// floating points.
+  BlockFrequency getBlockFreq(const BasicBlock *BB) const;
 };
 
 }