diff options
author | Daniel Jasper <djasper@google.com> | 2016-12-19 07:54:15 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2016-12-19 07:54:15 +0000 |
commit | e5f3eba9c31f4d00c73f4714df52ffced4532927 (patch) | |
tree | 198db57407ef02839ca778a3fa9010d59dbca61d | |
parent | e6169665ec6bfe192cebfcfe67fa2591cbb7c8ec (diff) | |
download | bcm5719-llvm-e5f3eba9c31f4d00c73f4714df52ffced4532927.tar.gz bcm5719-llvm-e5f3eba9c31f4d00c73f4714df52ffced4532927.zip |
Fix format after recent clang-format change.
llvm-svn: 290085
-rw-r--r-- | polly/lib/Analysis/ScopDetectionDiagnostic.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/polly/lib/Analysis/ScopDetectionDiagnostic.cpp b/polly/lib/Analysis/ScopDetectionDiagnostic.cpp index 6f86cf5f19e..1dc1270787f 100644 --- a/polly/lib/Analysis/ScopDetectionDiagnostic.cpp +++ b/polly/lib/Analysis/ScopDetectionDiagnostic.cpp @@ -44,8 +44,10 @@ using namespace llvm; llvm::Statistic RejectStatistics[] = { SCOP_STAT(CFG, ""), SCOP_STAT(InvalidTerminator, "Unsupported terminator instruction"), - SCOP_STAT(IrreducibleRegion, "Irreducible loops"), SCOP_STAT(LastCFG, ""), - SCOP_STAT(AffFunc, ""), SCOP_STAT(UndefCond, "Undefined branch condition"), + SCOP_STAT(IrreducibleRegion, "Irreducible loops"), + SCOP_STAT(LastCFG, ""), + SCOP_STAT(AffFunc, ""), + SCOP_STAT(UndefCond, "Undefined branch condition"), SCOP_STAT(InvalidCond, "Non-integer branch condition"), SCOP_STAT(UndefOperand, "Undefined operands in comparison"), SCOP_STAT(NonAffBranch, "Non-affine branch condition"), @@ -58,9 +60,10 @@ llvm::Statistic RejectStatistics[] = { SCOP_STAT(LoopBound, "Uncomputable loop bounds"), SCOP_STAT(LoopHasNoExit, "Loop without exit"), SCOP_STAT(FuncCall, "Function call with side effects"), - SCOP_STAT(NonSimpleMemoryAccess, - "Compilated access semantics (volatile or atomic)"), - SCOP_STAT(Alias, "Base address aliasing"), SCOP_STAT(Other, ""), + SCOP_STAT(NonSimpleMemoryAccess, "Compilated access semantics (volatile or " + "atomic)"), + SCOP_STAT(Alias, "Base address aliasing"), + SCOP_STAT(Other, ""), SCOP_STAT(IntToPtr, "Integer to pointer conversions"), SCOP_STAT(Alloca, "Stack allocations"), SCOP_STAT(UnknownInst, "Unknown Instructions"), |