@@ -38,8 +38,8 @@ mlir::Value CIRGenFunction::emitLoadOfScalar(LValue lvalue,
3838 if (mlir::isa<cir::VoidType>(eltTy))
3939 cgm.errorNYI (loc, " emitLoadOfScalar: void type" );
4040
41- mlir::Value loadOp = builder.CIRBaseBuilderTy ::createLoad (getLoc (loc), ptr,
42- false /* isVolatile*/ );
41+ mlir::Value loadOp = builder.CIRBaseBuilderTy ::createLoad (
42+ getLoc (loc), ptr, false /* isVolatile*/ );
4343
4444 return loadOp;
4545}
@@ -98,7 +98,8 @@ LValue CIRGenFunction::emitDeclRefLValue(const DeclRefExpr *e) {
9898}
9999
100100mlir::Value CIRGenFunction::emitAlloca (StringRef name, mlir::Type ty,
101- mlir::Location loc, CharUnits alignment) {
101+ mlir::Location loc,
102+ CharUnits alignment) {
102103 mlir::Block *entryBlock = getCurFunctionEntryBlock ();
103104
104105 // CIR uses its own alloca address space rather than follow the target data
@@ -122,7 +123,8 @@ mlir::Value CIRGenFunction::emitAlloca(StringRef name, mlir::Type ty,
122123// / This creates an alloca and inserts it at the current insertion point of the
123124// / builder.
124125Address CIRGenFunction::createTempAlloca (mlir::Type ty, CharUnits align,
125- mlir::Location loc, const Twine &name) {
126+ mlir::Location loc,
127+ const Twine &name) {
126128 mlir::Value alloca = emitAlloca (name.str (), ty, loc, align);
127129 return Address (alloca, ty, align);
128130}
0 commit comments