summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polly/lib/Analysis/ScopDetectionDiagnostic.cpp13
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"),
OpenPOWER on IntegriCloud