diff options
| author | Aiden Grossman <aidengrossman@google.com> | 2025-09-26 22:48:22 +0000 |
|---|---|---|
| committer | Aiden Grossman <aidengrossman@google.com> | 2025-09-26 22:48:22 +0000 |
| commit | 76533872e149395812a6d1651aa49dbf53fb4921 (patch) | |
| tree | 199a669fa57a4effc3116705d2ec89c07ff36c65 /mlir/lib/Target/LLVMIR/ModuleImport.cpp | |
| parent | 54f5c1b2e17a9be61609d70dbbc8354ad41bb931 (diff) | |
| parent | 37e7ad184d002db15f72771938755580433cf96d (diff) | |
[𝘀𝗽𝗿] changes introduced through rebaseusers/boomanaiden154/main.lit-remove-t-from-tests
Created using spr 1.3.6
[skip ci]
Diffstat (limited to 'mlir/lib/Target/LLVMIR/ModuleImport.cpp')
| -rw-r--r-- | mlir/lib/Target/LLVMIR/ModuleImport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/lib/Target/LLVMIR/ModuleImport.cpp b/mlir/lib/Target/LLVMIR/ModuleImport.cpp index 7a888bb3778a..5d6c8c8b7948 100644 --- a/mlir/lib/Target/LLVMIR/ModuleImport.cpp +++ b/mlir/lib/Target/LLVMIR/ModuleImport.cpp @@ -447,7 +447,7 @@ ModuleImport::processAliasScopeMetadata(const llvm::MDNode *node) { if (verifySelfRef(node)) return DistinctAttr::create(builder.getUnitAttr()); - auto name = cast<llvm::MDString>(node->getOperand(0)); + auto *name = cast<llvm::MDString>(node->getOperand(0)); return builder.getStringAttr(name->getString()); }; @@ -1123,7 +1123,7 @@ void ModuleImport::setExactFlag(llvm::Instruction *inst, Operation *op) const { void ModuleImport::setDisjointFlag(llvm::Instruction *inst, Operation *op) const { auto iface = cast<DisjointFlagInterface>(op); - auto instDisjoint = cast<llvm::PossiblyDisjointInst>(inst); + auto *instDisjoint = cast<llvm::PossiblyDisjointInst>(inst); iface.setIsDisjoint(instDisjoint->isDisjoint()); } |
