Skip to content

Commit 4025e5c

Browse files
committed
Merge commit '6e0553f545df37a31b096f462f5319312728daca' into users/meinersbur/polly_CodePreparation
2 parents d17f456 + 6e0553f commit 4025e5c

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

llvm/lib/Transforms/Vectorize/VPlanValue.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ class VPRecipeBase;
4141
class VPInterleaveBase;
4242
class VPPhiAccessors;
4343

44-
// This is the base class of the VPlan Def/Use graph, used for modeling the data
45-
// flow into, within and out of the VPlan. VPValues can stand for live-ins
46-
// coming from the input IR and instructions which VPlan will generate if
47-
// executed.
44+
/// This is the base class of the VPlan Def/Use graph, used for modeling the
45+
/// data flow into, within and out of the VPlan. VPValues can stand for live-ins
46+
/// coming from the input IR and instructions which VPlan will generate if
47+
/// executed.
4848
class LLVM_ABI_FOR_TEST VPValue {
4949
friend class VPDef;
5050
friend struct VPDoubleValueDef;
@@ -57,7 +57,7 @@ class LLVM_ABI_FOR_TEST VPValue {
5757
SmallVector<VPUser *, 1> Users;
5858

5959
protected:
60-
// Hold the underlying Value, if any, attached to this VPValue.
60+
/// Hold the underlying Value, if any, attached to this VPValue.
6161
Value *UnderlyingVal;
6262

6363
/// Pointer to the VPDef that defines this VPValue. If it is nullptr, the

polly/lib/Support/RegisterPasses.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,6 @@ static llvm::Expected<bool>
479479
parseCGPipeline(StringRef Name, llvm::CGSCCPassManager &CGPM,
480480
PassInstrumentationCallbacks *PIC,
481481
ArrayRef<PassBuilder::PipelineElement> Pipeline) {
482-
assert(Pipeline.empty());
483-
484482
#define CGSCC_PASS(NAME, CREATE_PASS, PARSER) \
485483
if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
486484
auto Params = PassBuilder::parsePassParameters(PARSER, Name, NAME); \

0 commit comments

Comments
 (0)