diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-01 16:29:27 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-01 16:29:27 +0000 |
commit | 32ab312e3f1987eeb8dbfe0917d980497e88a61c (patch) | |
tree | 69d65e3c4d12f542e2baa0167bf6a8e42ae4947d /lib/Target/X86 | |
parent | e2481ff8ee722e25d1e3aa192b276f9b5be5b177 (diff) | |
download | external_llvm-32ab312e3f1987eeb8dbfe0917d980497e88a61c.zip external_llvm-32ab312e3f1987eeb8dbfe0917d980497e88a61c.tar.gz external_llvm-32ab312e3f1987eeb8dbfe0917d980497e88a61c.tar.bz2 |
Update CMake target names for tablegen-generated data in the X86 and ARM targets. This should fix the CMake build with MSVC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86')
-rw-r--r-- | lib/Target/X86/TargetInfo/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/Target/X86/Utils/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/TargetInfo/CMakeLists.txt b/lib/Target/X86/TargetInfo/CMakeLists.txt index 8611c40..4da00fa 100644 --- a/lib/Target/X86/TargetInfo/CMakeLists.txt +++ b/lib/Target/X86/TargetInfo/CMakeLists.txt @@ -10,4 +10,4 @@ add_llvm_library_dependencies(LLVMX86Info LLVMTarget ) -add_dependencies(LLVMX86Info X86CodeGenTable_gen) +add_dependencies(LLVMX86Info X86CommonTableGen) diff --git a/lib/Target/X86/Utils/CMakeLists.txt b/lib/Target/X86/Utils/CMakeLists.txt index 30ed60b..caffd8b 100644 --- a/lib/Target/X86/Utils/CMakeLists.txt +++ b/lib/Target/X86/Utils/CMakeLists.txt @@ -9,4 +9,4 @@ add_llvm_library_dependencies(LLVMX86Utils LLVMSupport ) -add_dependencies(LLVMX86Utils X86CodeGenTable_gen) +add_dependencies(LLVMX86Utils X86CommonTableGen) |