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).
This commit is contained in:
Mehdi Amini 2020-04-16 03:47:02 +00:00
parent 7aaaea5acd
commit a07e5b8574
1 changed files with 1 additions and 0 deletions

View File

@ -15,4 +15,5 @@ target_link_libraries(MLIRAffineTransformsTestPasses PRIVATE
MLIRPass
MLIRAffineTransforms
MLIRSupport
MLIRAffineUtils
)