aboutsummaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorOwen Pan <owenpiano@gmail.com>2023-10-24 03:17:28 -0700
committerOwen Pan <owenpiano@gmail.com>2023-10-24 03:24:05 -0700
commitbf05be5b87fccfbc84e84abe0ddc9f3c0421fda5 (patch)
tree9e06b484aa95e5bb14e91c63d8dd7ffb5e1f0294 /polly
parentb4fc1418d9765bfb605387efc70ecf233d27b383 (diff)
downloadllvm-bf05be5b87fccfbc84e84abe0ddc9f3c0421fda5.zip
llvm-bf05be5b87fccfbc84e84abe0ddc9f3c0421fda5.tar.gz
llvm-bf05be5b87fccfbc84e84abe0ddc9f3c0421fda5.tar.bz2
[polly] Reformat due to d68826dfbd98
Diffstat (limited to 'polly')
-rw-r--r--polly/lib/Analysis/DependenceInfo.cpp4
-rw-r--r--polly/lib/Analysis/ScopBuilder.cpp7
2 files changed, 5 insertions, 6 deletions
diff --git a/polly/lib/Analysis/DependenceInfo.cpp b/polly/lib/Analysis/DependenceInfo.cpp
index d58dc99..69257c6 100644
--- a/polly/lib/Analysis/DependenceInfo.cpp
+++ b/polly/lib/Analysis/DependenceInfo.cpp
@@ -950,8 +950,8 @@ public:
bool runOnScop(Scop &S) override {
DependenceInfo &P = getAnalysis<DependenceInfo>();
- OS << "Printing analysis '" << P.getPassName() << "' for "
- << "region: '" << S.getRegion().getNameStr() << "' in function '"
+ OS << "Printing analysis '" << P.getPassName() << "' for " << "region: '"
+ << S.getRegion().getNameStr() << "' in function '"
<< S.getFunction().getName() << "':\n";
P.printScop(OS, S);
diff --git a/polly/lib/Analysis/ScopBuilder.cpp b/polly/lib/Analysis/ScopBuilder.cpp
index 0e3de8b..c344138 100644
--- a/polly/lib/Analysis/ScopBuilder.cpp
+++ b/polly/lib/Analysis/ScopBuilder.cpp
@@ -2671,10 +2671,9 @@ void ScopBuilder::addUserContext() {
if (NameContext != NameUserContext) {
std::string SpaceStr = stringFromIslObj(Space, "null");
errs() << "Error: the name of dimension " << i
- << " provided in -polly-context "
- << "is '" << NameUserContext << "', but the name in the computed "
- << "context is '" << NameContext
- << "'. Due to this name mismatch, "
+ << " provided in -polly-context " << "is '" << NameUserContext
+ << "', but the name in the computed " << "context is '"
+ << NameContext << "'. Due to this name mismatch, "
<< "the -polly-context option is ignored. Please provide "
<< "the context in the parameter space: " << SpaceStr << ".\n";
return;