mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
[MLIR] Apply clang-tidy fixes for llvm-qualified-auto in SelectObjectAttr.cpp (NFC)
This commit is contained in:
@@ -124,10 +124,10 @@ static LogicalResult embedBinaryImpl(StringRef moduleName,
|
||||
}
|
||||
|
||||
IRBuilder<> builder(module.getContext());
|
||||
auto i32Ty = builder.getInt32Ty();
|
||||
auto i64Ty = builder.getInt64Ty();
|
||||
auto ptrTy = builder.getPtrTy(0);
|
||||
auto voidTy = builder.getVoidTy();
|
||||
auto *i32Ty = builder.getInt32Ty();
|
||||
auto *i64Ty = builder.getInt64Ty();
|
||||
auto *ptrTy = builder.getPtrTy(0);
|
||||
auto *voidTy = builder.getVoidTy();
|
||||
|
||||
// Embed the module as a global object.
|
||||
auto *modulePtr = new GlobalVariable(
|
||||
|
||||
Reference in New Issue
Block a user