Skip to content

Commit 0f8f59a

Browse files
committed
Fix formatting
1 parent 2c9ce5e commit 0f8f59a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CIR/CodeGen/CIRGenModule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ void CIRGenModule::emitGlobalVarDefinition(const clang::VarDecl *vd,
368368
const mlir::Type type = convertType(vd->getType());
369369
if (clang::IdentifierInfo *identifier = vd->getIdentifier()) {
370370
StringRef name = getMangledName(GlobalDecl(vd));
371-
auto varOp = builder.create<cir::GlobalOp>(getLoc(vd->getSourceRange()),
372-
name, type);
371+
auto varOp =
372+
builder.create<cir::GlobalOp>(getLoc(vd->getSourceRange()), name, type);
373373
// TODO(CIR): This code for processing initial values is a placeholder
374374
// until class ConstantEmitter is upstreamed and the code for processing
375375
// constant expressions is filled out. Only the most basic handling of

0 commit comments

Comments
 (0)