[OptDiag] Missed these when making the IR Value a const pointer
authorAdam Nemet <anemet@apple.com>
Thu, 21 Jul 2016 01:11:12 +0000 (01:11 +0000)
committerAdam Nemet <anemet@apple.com>
Thu, 21 Jul 2016 01:11:12 +0000 (01:11 +0000)
llvm-svn: 276224

llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp

index 65ca292..cee8bfb 100644 (file)
@@ -99,7 +99,8 @@ public:
   /// is generated.\p V is the IR Value that identifies the code region.  \p Msg
   /// is the message string to use.
   void emitOptimizationRemarkAnalysisFPCommute(const char *PassName,
-                                               const DebugLoc &DLoc, Value *V,
+                                               const DebugLoc &DLoc,
+                                               const Value *V,
                                                const Twine &Msg);
 
   /// \brief Emit an optimization analysis remark related to pointer aliasing.
@@ -111,8 +112,8 @@ public:
   /// is generated.\p V is the IR Value that identifies the code region.  \p Msg
   /// is the message string to use.
   void emitOptimizationRemarkAnalysisAliasing(const char *PassName,
-                                              const DebugLoc &DLoc, Value *V,
-                                              const Twine &Msg);
+                                              const DebugLoc &DLoc,
+                                              const Value *V, const Twine &Msg);
 
   /// \brief Same as above but derives the IR Value for the code region and the
   /// debug location from the Loop parameter \p L.
index e658755..94c796d 100644 (file)
@@ -70,14 +70,16 @@ void OptimizationRemarkEmitter::emitOptimizationRemarkAnalysis(
 }
 
 void OptimizationRemarkEmitter::emitOptimizationRemarkAnalysisFPCommute(
-    const char *PassName, const DebugLoc &DLoc, Value *V, const Twine &Msg) {
+    const char *PassName, const DebugLoc &DLoc, const Value *V,
+    const Twine &Msg) {
   LLVMContext &Ctx = F->getContext();
   Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisFPCommute(
       PassName, *F, DLoc, Msg, computeHotness(V)));
 }
 
 void OptimizationRemarkEmitter::emitOptimizationRemarkAnalysisAliasing(
-    const char *PassName, const DebugLoc &DLoc, Value *V, const Twine &Msg) {
+    const char *PassName, const DebugLoc &DLoc, const Value *V,
+    const Twine &Msg) {
   LLVMContext &Ctx = F->getContext();
   Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisAliasing(
       PassName, *F, DLoc, Msg, computeHotness(V)));