From: Tom Stellard Date: Wed, 7 Jul 2021 13:56:15 +0000 (-0700) Subject: unittests: Fix library dependency name X-Git-Tag: llvmorg-14-init~2130 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c03d92ee637537c0d6ea4ba05474d41b3131bd7;p=platform%2Fupstream%2Fllvm.git unittests: Fix library dependency name Corrects the library name of LLVMAsmParser added in 2e4ec3e5d6a3bf7f61bea6898286cba64be7b764. --- diff --git a/llvm/unittests/Passes/CMakeLists.txt b/llvm/unittests/Passes/CMakeLists.txt index 37b1d42..f9ab51c 100644 --- a/llvm/unittests/Passes/CMakeLists.txt +++ b/llvm/unittests/Passes/CMakeLists.txt @@ -12,7 +12,7 @@ endif() # work with DLLs on Windows (where a shared library can't have undefined # references), so just skip this testcase on Windows. if (NOT WIN32) - set(LLVM_LINK_COMPONENTS Support Passes Core LLVMAsmParser) + set(LLVM_LINK_COMPONENTS Support Passes Core AsmParser) add_llvm_unittest(PluginsTests PluginsTest.cpp )