diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-03-18 18:51:11 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-03-18 18:51:11 +0000 |
commit | 4eb7ddb13a6ccacdb40887b3f87d04d50348499e (patch) | |
tree | aa63a778129e11a67305815bb21cafe55d16e13e | |
parent | 72ceb7bc734eb02c7c67dc4553208c7ab1c5d60a (diff) | |
download | bcm5719-llvm-4eb7ddb13a6ccacdb40887b3f87d04d50348499e.tar.gz bcm5719-llvm-4eb7ddb13a6ccacdb40887b3f87d04d50348499e.zip |
Fix source code formatting
llvm-svn: 204169
-rw-r--r-- | polly/lib/Analysis/ScopInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp index a9aca8a66ef..fe8bafe8b91 100644 --- a/polly/lib/Analysis/ScopInfo.cpp +++ b/polly/lib/Analysis/ScopInfo.cpp @@ -943,8 +943,8 @@ void Scop::printStatements(raw_ostream &OS) const { } void Scop::print(raw_ostream &OS) const { - OS.indent(4) << "Function: " - << getRegion().getEntry()->getParent()->getName() << "\n"; + OS.indent(4) << "Function: " << getRegion().getEntry()->getParent()->getName() + << "\n"; OS.indent(4) << "Region: " << getNameStr() << "\n"; printContext(OS.indent(4)); printStatements(OS.indent(4)); |