diff options
Diffstat (limited to 'mlir/lib/Tools/PDLL/AST/Nodes.cpp')
| -rw-r--r-- | mlir/lib/Tools/PDLL/AST/Nodes.cpp | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/mlir/lib/Tools/PDLL/AST/Nodes.cpp b/mlir/lib/Tools/PDLL/AST/Nodes.cpp index 3af6ddf4dba3..57b52fde6261 100644 --- a/mlir/lib/Tools/PDLL/AST/Nodes.cpp +++ b/mlir/lib/Tools/PDLL/AST/Nodes.cpp @@ -199,8 +199,7 @@ CompoundStmt *CompoundStmt::create(Context &ctx, SMRange loc, // LetStmt //===----------------------------------------------------------------------===// -LetStmt *LetStmt::create(Context &ctx, SMRange loc, - VariableDecl *varDecl) { +LetStmt *LetStmt::create(Context &ctx, SMRange loc, VariableDecl *varDecl) { return new (ctx.getAllocator().Allocate<LetStmt>()) LetStmt(loc, varDecl); } @@ -394,8 +393,7 @@ Optional<StringRef> OpConstraintDecl::getName() const { // TypeConstraintDecl //===----------------------------------------------------------------------===// -TypeConstraintDecl *TypeConstraintDecl::create(Context &ctx, - SMRange loc) { +TypeConstraintDecl *TypeConstraintDecl::create(Context &ctx, SMRange loc) { return new (ctx.getAllocator().Allocate<TypeConstraintDecl>()) TypeConstraintDecl(loc); } @@ -414,8 +412,8 @@ TypeRangeConstraintDecl *TypeRangeConstraintDecl::create(Context &ctx, // ValueConstraintDecl //===----------------------------------------------------------------------===// -ValueConstraintDecl * -ValueConstraintDecl::create(Context &ctx, SMRange loc, Expr *typeExpr) { +ValueConstraintDecl *ValueConstraintDecl::create(Context &ctx, SMRange loc, + Expr *typeExpr) { return new (ctx.getAllocator().Allocate<ValueConstraintDecl>()) ValueConstraintDecl(loc, typeExpr); } @@ -424,9 +422,8 @@ ValueConstraintDecl::create(Context &ctx, SMRange loc, Expr *typeExpr) { // ValueRangeConstraintDecl //===----------------------------------------------------------------------===// -ValueRangeConstraintDecl *ValueRangeConstraintDecl::create(Context &ctx, - SMRange loc, - Expr *typeExpr) { +ValueRangeConstraintDecl * +ValueRangeConstraintDecl::create(Context &ctx, SMRange loc, Expr *typeExpr) { return new (ctx.getAllocator().Allocate<ValueRangeConstraintDecl>()) ValueRangeConstraintDecl(loc, typeExpr); } @@ -498,8 +495,8 @@ OpNameDecl *OpNameDecl::create(Context &ctx, SMRange loc) { // PatternDecl //===----------------------------------------------------------------------===// -PatternDecl *PatternDecl::create(Context &ctx, SMRange loc, - const Name *name, Optional<uint16_t> benefit, +PatternDecl *PatternDecl::create(Context &ctx, SMRange loc, const Name *name, + Optional<uint16_t> benefit, bool hasBoundedRecursion, const CompoundStmt *body) { return new (ctx.getAllocator().Allocate<PatternDecl>()) @@ -554,8 +551,7 @@ VariableDecl *VariableDecl::create(Context &ctx, const Name &name, Type type, // Module //===----------------------------------------------------------------------===// -Module *Module::create(Context &ctx, SMLoc loc, - ArrayRef<Decl *> children) { +Module *Module::create(Context &ctx, SMLoc loc, ArrayRef<Decl *> children) { unsigned allocSize = Module::totalSizeToAlloc<Decl *>(children.size()); void *rawData = ctx.getAllocator().Allocate(allocSize, alignof(Module)); |
