From: Mehdi Amini Date: Thu, 16 Apr 2020 03:47:02 +0000 (+0000) Subject: Fix build by adding missing CMake link dependency X-Git-Tag: llvmorg-12-init~8863 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a07e5b857425a8d411dbf1cdfca5ba5d6521549d;p=platform%2Fupstream%2Fllvm.git Fix build by adding missing CMake link dependency This would only fail when using a linker that is sensitive to the order in which the libraries are passed on the command line (like bfd). --- diff --git a/mlir/test/lib/Dialect/Affine/CMakeLists.txt b/mlir/test/lib/Dialect/Affine/CMakeLists.txt index 296e431..56195ba 100644 --- a/mlir/test/lib/Dialect/Affine/CMakeLists.txt +++ b/mlir/test/lib/Dialect/Affine/CMakeLists.txt @@ -15,4 +15,5 @@ target_link_libraries(MLIRAffineTransformsTestPasses PRIVATE MLIRPass MLIRAffineTransforms MLIRSupport + MLIRAffineUtils )