Skip to content

Commit e76fa73

Browse files
xlaukolanza
authored andcommitted
[CIR][NFC] Format bool type definition (llvm#1639)
1 parent f100c06 commit e76fa73

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

clang/include/clang/CIR/Dialect/IR/CIRTypes.td

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -293,15 +293,10 @@ def CIR_DataMemberType : CIR_Type<"DataMember", "data_member",
293293

294294
//===----------------------------------------------------------------------===//
295295
// BoolType
296-
//
297-
// An alternative here is to represent bool as mlir::i1, but let's be more
298-
// generic.
299-
//
300296
//===----------------------------------------------------------------------===//
301297

302-
def CIR_BoolType :
303-
CIR_Type<"Bool", "bool",
304-
[DeclareTypeInterfaceMethods<DataLayoutTypeInterface>]> {
298+
def CIR_BoolType : CIR_Type<"Bool", "bool",
299+
[DeclareTypeInterfaceMethods<DataLayoutTypeInterface>]> {
305300

306301
let summary = "CIR bool type";
307302
let description = [{

0 commit comments

Comments
 (0)