diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopDistribute.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDistribute.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp index 464db8e1811..a07121e0839 100644 --- a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp @@ -765,8 +765,9 @@ public: // With Rpass-analysis report why. This is on by default if distribution // was requested explicitly. emitOptimizationRemarkAnalysis( - Ctx, Forced ? DiagnosticInfo::AlwaysPrint : LDIST_NAME, *F, - L->getStartLoc(), Twine("loop not distributed: ") + Message); + Ctx, Forced ? DiagnosticInfoOptimizationRemarkAnalysis::AlwaysPrint + : LDIST_NAME, + *F, L->getStartLoc(), Twine("loop not distributed: ") + Message); // Also issue a warning if distribution was requested explicitly but it // failed. |

