summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-07-16 07:44:45 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-07-16 07:44:45 +0000
commit411afbe321a7a3705a390d405e9e71ab21f71657 (patch)
tree2e3a061f987a39150c96f266996ef97baf921a64 /unittests
parent99a92f269d4ea6f13a9858bb883e13382d021120 (diff)
downloadllvm-411afbe321a7a3705a390d405e9e71ab21f71657.tar.gz
llvm-411afbe321a7a3705a390d405e9e71ab21f71657.tar.bz2
llvm-411afbe321a7a3705a390d405e9e71ab21f71657.tar.xz
Move the IRBuilder unittest from Support to VMCore. This got missed in
the original move of IRBuilder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/CMakeLists.txt1
-rw-r--r--unittests/VMCore/CMakeLists.txt1
-rw-r--r--unittests/VMCore/IRBuilderTest.cpp (renamed from unittests/Support/IRBuilderTest.cpp)2
3 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Support/CMakeLists.txt b/unittests/Support/CMakeLists.txt
index ad16e627cf..88596787dd 100644
--- a/unittests/Support/CMakeLists.txt
+++ b/unittests/Support/CMakeLists.txt
@@ -13,7 +13,6 @@ add_llvm_unittest(SupportTests
DataExtractorTest.cpp
EndianTest.cpp
IntegersSubsetTest.cpp
- IRBuilderTest.cpp
LeakDetectorTest.cpp
ManagedStatic.cpp
MathExtrasTest.cpp
diff --git a/unittests/VMCore/CMakeLists.txt b/unittests/VMCore/CMakeLists.txt
index b902930927..632eab5719 100644
--- a/unittests/VMCore/CMakeLists.txt
+++ b/unittests/VMCore/CMakeLists.txt
@@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS
set(VMCoreSources
ConstantsTest.cpp
DominatorTreeTest.cpp
+ IRBuilderTest.cpp
InstructionsTest.cpp
MDBuilderTest.cpp
MetadataTest.cpp
diff --git a/unittests/Support/IRBuilderTest.cpp b/unittests/VMCore/IRBuilderTest.cpp
index 56b9f15462..9be3ab9555 100644
--- a/unittests/Support/IRBuilderTest.cpp
+++ b/unittests/VMCore/IRBuilderTest.cpp
@@ -1,4 +1,4 @@
-//===- llvm/unittest/Support/IRBuilderTest.cpp - IRBuilder tests ----------===//
+//===- llvm/unittest/VMCore/IRBuilderTest.cpp - IRBuilder tests -----------===//
//
// The LLVM Compiler Infrastructure
//