diff options
author | Eric Christopher <echristo@gmail.com> | 2013-09-03 22:08:28 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-09-03 22:08:28 +0000 |
commit | 4bc23f09801df3794f4c52845c0475fb54582983 (patch) | |
tree | ea399421f60eeeac6a88545eca2deac53eaa1ab3 /unittests | |
parent | 800a8761285a239bb82f7d1883a8398815cd2d8f (diff) | |
download | external_llvm-4bc23f09801df3794f4c52845c0475fb54582983.zip external_llvm-4bc23f09801df3794f4c52845c0475fb54582983.tar.gz external_llvm-4bc23f09801df3794f4c52845c0475fb54582983.tar.bz2 |
Fix copy and pasto with CMake files for unittest.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/CodeGen/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/CodeGen/CMakeLists.txt b/unittests/CodeGen/CMakeLists.txt index 5f5c90a..5973bae 100644 --- a/unittests/CodeGen/CMakeLists.txt +++ b/unittests/CodeGen/CMakeLists.txt @@ -4,10 +4,10 @@ set(LLVM_LINK_COMPONENTS support ) -set(DebugInfoSources +set(CodeGenSources DIEHashTest.cpp ) -add_llvm_unittest(DebugInfoTests - ${DebugInfoSources} +add_llvm_unittest(CodeGenTests + ${CodeGenSources} ) |