diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-21 20:33:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-21 20:33:53 -0700 |
commit | 6074d83664df089f630d99f33b54beaff3f8ddb5 (patch) | |
tree | 91aa1103aaa14e608de71bd70a7eadf8bc423d98 /mlir/lib/Target/LLVMIR/ModuleImport.cpp | |
parent | 7ffa49111a2d26762ecc1d673610e4daf47cdc90 (diff) | |
download | llvm-6074d83664df089f630d99f33b54beaff3f8ddb5.zip llvm-6074d83664df089f630d99f33b54beaff3f8ddb5.tar.gz llvm-6074d83664df089f630d99f33b54beaff3f8ddb5.tar.bz2 |
[mlir] Remove unused local variables (NFC) (#140990)
Diffstat (limited to 'mlir/lib/Target/LLVMIR/ModuleImport.cpp')
-rw-r--r-- | mlir/lib/Target/LLVMIR/ModuleImport.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mlir/lib/Target/LLVMIR/ModuleImport.cpp b/mlir/lib/Target/LLVMIR/ModuleImport.cpp index 8945ae9..6c82bf5 100644 --- a/mlir/lib/Target/LLVMIR/ModuleImport.cpp +++ b/mlir/lib/Target/LLVMIR/ModuleImport.cpp @@ -756,7 +756,6 @@ convertProfileSummaryModuleFlagValue(ModuleOp mlirModule, // Build ModuleFlagProfileSummaryAttr by sequentially fetching elements in // a fixed order: format, total count, etc. - SmallVector<Attribute> profileSummary; std::optional<ProfileSummaryFormatKind> format = convertProfileSummaryFormat( mlirModule, llvmModule, mdTuple->getOperand(summayIdx++)); if (!format.has_value()) |