llvm-project/mlir/lib/Target
Fangrui Song eeef50b1fe [mlir] Fix -Wrange-loo-analysis warnings
for (const auto &x : llvm::zip(..., ...))

->

for (auto x : llvm::zip(..., ...))

The return type of zip() is a wrapper that wraps a tuple of references.

> warning: loop variable 'p' is always a copy because the range of type 'detail::zippy<detail::zip_shortest, ArrayRef<long> &, ArrayRef<long> &>' does not return a reference [-Wrange-loop-analysis]
2020-01-01 16:06:04 -08:00
..
LLVMIR [mlir] Fix -Wrange-loo-analysis warnings 2020-01-01 16:06:04 -08:00
CMakeLists.txt [llvm] Add initial import of LLVM modules to mlir-translate 2019-11-05 14:41:38 -08:00