Skip to content

Commit 08aa511

Browse files
committed
Correct variable case
1 parent 66adcc0 commit 08aa511

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mlir/lib/Target/LLVMIR/ConvertToLLVMIR.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void registerToLLVMIRTranslation() {
3737
// When printing LLVM IR, we should convert the module to the debug info
3838
// format that LLVM expects us to print.
3939
// See https://llvm.org/docs/RemoveDIsDebugInfo.html
40-
llvm::ScopedDbgInfoFormatSetter FormatSetter(*llvmModule,
40+
llvm::ScopedDbgInfoFormatSetter formatSetter(*llvmModule,
4141
WriteNewDbgInfoFormat);
4242
if (WriteNewDbgInfoFormat)
4343
llvmModule->removeDebugIntrinsicDeclarations();

mlir/test/lib/Dialect/Test/TestToLLVMIRTranslation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ void registerTestToLLVMIR() {
128128
// When printing LLVM IR, we should convert the module to the debug info
129129
// format that LLVM expects us to print.
130130
// See https://llvm.org/docs/RemoveDIsDebugInfo.html
131-
llvm::ScopedDbgInfoFormatSetter FormatSetter(*llvmModule,
131+
llvm::ScopedDbgInfoFormatSetter formatSetter(*llvmModule,
132132
WriteNewDbgInfoFormat);
133133
if (WriteNewDbgInfoFormat)
134134
llvmModule->removeDebugIntrinsicDeclarations();

0 commit comments

Comments
 (0)