[polly] r290085 - Fix format after recent clang-format change.
Daniel Jasper via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 18 23:54:16 PST 2016
Author: djasper
Date: Mon Dec 19 01:54:15 2016
New Revision: 290085
URL: http://llvm.org/viewvc/llvm-project?rev=290085&view=rev
Log:
Fix format after recent clang-format change.
Modified:
polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp
Modified: polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp?rev=290085&r1=290084&r2=290085&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp Mon Dec 19 01:54:15 2016
@@ -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"),
More information about the llvm-commits
mailing list