@@ -83,7 +83,7 @@ class StructType
83
83
84
84
enum RecordKind : uint32_t { Class, Union, Struct };
85
85
86
- // / Create a identified and complete struct type.
86
+ // / Create an identified and complete struct type.
87
87
static StructType get (mlir::MLIRContext *context,
88
88
llvm::ArrayRef<mlir::Type> members,
89
89
mlir::StringAttr name, bool packed, bool padded,
@@ -94,15 +94,15 @@ class StructType
94
94
mlir::StringAttr name, bool packed, bool padded, RecordKind kind,
95
95
ASTRecordDeclInterface ast = {});
96
96
97
- // / Create a identified and incomplete struct type.
97
+ // / Create an identified and incomplete struct type.
98
98
static StructType get (mlir::MLIRContext *context, mlir::StringAttr name,
99
99
RecordKind kind);
100
100
static StructType
101
101
getChecked (llvm::function_ref<mlir::InFlightDiagnostic()> emitError,
102
102
mlir::MLIRContext *context, mlir::StringAttr name,
103
103
RecordKind kind);
104
104
105
- // / Create a anonymous struct type (always complete).
105
+ // / Create an anonymous struct type (always complete).
106
106
static StructType get (mlir::MLIRContext *context,
107
107
llvm::ArrayRef<mlir::Type> members, bool packed,
108
108
bool padded, RecordKind kind,
0 commit comments