Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lenharth committed Dec 27, 2024
1 parent 4b71336 commit 6bee145
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion include/circt/Dialect/ICE40/ICE40Ops.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#define CIRCT_DIALECT_ICE40_ICE40OPS_H

#include "circt/Dialect/ICE40/ICE40Dialect.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/Bytecode/BytecodeOpInterface.h"
#include "mlir/IR/OpImplementation.h"

#define GET_OP_CLASSES
#include "circt/Dialect/ICE40/ICE40.h.inc"
Expand Down
17 changes: 4 additions & 13 deletions lib/Dialect/ICE40/ICE40Ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
//===----------------------------------------------------------------------===//

#include "circt/Dialect/ICE40/ICE40Ops.h"
#include "mlir/IR/ImplicitLocOpBuilder.h"
#include "mlir/IR/DialectImplementation.h"
#include "mlir/IR/ImplicitLocOpBuilder.h"

using namespace circt;
using namespace ice40;
Expand All @@ -21,28 +21,19 @@ using namespace ice40;
// SBLut4Op
//===----------------------------------------------------------------------===//

LogicalResult SBLut4Op::verify()
{
return success();
}
LogicalResult SBLut4Op::verify() { return success(); }

//===----------------------------------------------------------------------===//
// SBCarryOp
//===----------------------------------------------------------------------===//

LogicalResult SBCarryOp::verify()
{
return success();
}
LogicalResult SBCarryOp::verify() { return success(); }

//===----------------------------------------------------------------------===//
// SBLut4CarryOp
//===----------------------------------------------------------------------===//

LogicalResult SBLut4CarryOp::verify()
{
return success();
}
LogicalResult SBLut4CarryOp::verify() { return success(); }

//===----------------------------------------------------------------------===//
// TableGen generated logic.
Expand Down

0 comments on commit 6bee145

Please sign in to comment.