summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2013-11-16 01:07:06 +0000
committerTobias Grosser <tobias@grosser.es>2013-11-16 01:07:06 +0000
commit1c84d80457cdd5f625677c245a22d83dab11a435 (patch)
tree6ad00490c6b444b6708709aabc08c54e2adf73bd
parente4d20ab7866ef1570d134e67f6828d94ecbf8e40 (diff)
downloadbcm5719-llvm-1c84d80457cdd5f625677c245a22d83dab11a435.tar.gz
bcm5719-llvm-1c84d80457cdd5f625677c245a22d83dab11a435.zip
Style fixes, brought to you by clang-format
llvm-svn: 194910
-rw-r--r--[-rwxr-xr-x]polly/include/polly/MayAliasSet.h4
-rw-r--r--polly/lib/Analysis/ScopDetection.cpp2
-rw-r--r--polly/lib/CodePreparation.cpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/polly/include/polly/MayAliasSet.h b/polly/include/polly/MayAliasSet.h
index f297d88b71d..288ac8a7afa 100755..100644
--- a/polly/include/polly/MayAliasSet.h
+++ b/polly/include/polly/MayAliasSet.h
@@ -105,8 +105,8 @@ public:
/// @brief Compute and manage the may-alias sets in a TempSCoP or SCoP.
class MayAliasSetInfo {
MayAliasSetInfo(const MayAliasSetInfo &) LLVM_DELETED_FUNCTION;
- const MayAliasSetInfo &operator=(
- const MayAliasSetInfo &) LLVM_DELETED_FUNCTION;
+ const MayAliasSetInfo &
+ operator=(const MayAliasSetInfo &) LLVM_DELETED_FUNCTION;
SpecificBumpPtrAllocator<MayAliasSet> MayASAllocator;
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp
index ba8ff460ec1..f0cae5014ea 100644
--- a/polly/lib/Analysis/ScopDetection.cpp
+++ b/polly/lib/Analysis/ScopDetection.cpp
@@ -125,7 +125,7 @@ STATISTIC(ValidRegion, "Number of regions that a valid part of Scop");
} \
DEBUG(dbgs() << MESSAGE); \
DEBUG(dbgs() << "\n"); \
- assert(!Context.Verifying &&#NAME); \
+ assert(!Context.Verifying && #NAME); \
if (!Context.Verifying) \
++Bad##NAME##ForScop; \
} while (0)
diff --git a/polly/lib/CodePreparation.cpp b/polly/lib/CodePreparation.cpp
index a81d9d8a23f..c9278438487 100644
--- a/polly/lib/CodePreparation.cpp
+++ b/polly/lib/CodePreparation.cpp
@@ -53,8 +53,8 @@ namespace {
///
class CodePreparation : public FunctionPass {
CodePreparation(const CodePreparation &) LLVM_DELETED_FUNCTION;
- const CodePreparation &operator=(
- const CodePreparation &) LLVM_DELETED_FUNCTION;
+ const CodePreparation &
+ operator=(const CodePreparation &) LLVM_DELETED_FUNCTION;
LoopInfo *LI;
ScalarEvolution *SE;
OpenPOWER on IntegriCloud