[Mlir-commits] [mlir] 8bc4462 - Remove unused variable. (#70670)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Oct 30 08:37:34 PDT 2023


Author: tsitdikov
Date: 2023-10-30T16:37:30+01:00
New Revision: 8bc4462bc1fb14d7fb0cd80560e88a2acdd46093

URL: https://github.com/llvm/llvm-project/commit/8bc4462bc1fb14d7fb0cd80560e88a2acdd46093
DIFF: https://github.com/llvm/llvm-project/commit/8bc4462bc1fb14d7fb0cd80560e88a2acdd46093.diff

LOG: Remove unused variable. (#70670)

All usages of the variable have been removed in
https://github.com/llvm/llvm-project/pull/68689, we now need to clean it
up.

Added: 
    

Modified: 
    mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp b/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
index 67875f668d4d3e6..6a515c2ba4e87e9 100644
--- a/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+++ b/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
@@ -1852,7 +1852,6 @@ convertOmpTargetData(Operation *op, llvm::IRBuilderBase &builder,
   SmallVector<Value> mapOperands;
   SmallVector<Value> useDevPtrOperands;
   SmallVector<Value> useDevAddrOperands;
-  ArrayAttr mapTypes;
   llvm::omp::RuntimeFunction RTLFn;
   DataLayout DL = DataLayout(op->getParentOfType<ModuleOp>());
 


        


More information about the Mlir-commits mailing list