forked from OSchip/llvm-project
Rename the VMCore unittest tree to IR. Somehow was missed when doing the
library rename. llvm-svn: 171747
This commit is contained in:
parent
839a98e687
commit
74b6a77d75
|
@ -12,4 +12,4 @@ add_subdirectory(Bitcode)
|
|||
add_subdirectory(Option)
|
||||
add_subdirectory(Support)
|
||||
add_subdirectory(Transforms)
|
||||
add_subdirectory(VMCore)
|
||||
add_subdirectory(IR)
|
||||
|
|
|
@ -4,7 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ipa
|
||||
)
|
||||
|
||||
set(VMCoreSources
|
||||
set(IRSources
|
||||
ConstantsTest.cpp
|
||||
DominatorTreeTest.cpp
|
||||
IRBuilderTest.cpp
|
||||
|
@ -22,7 +22,7 @@ set(VMCoreSources
|
|||
# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
|
||||
# See issue#331418 in Visual Studio.
|
||||
if(MSVC AND MSVC_VERSION LESS 1600)
|
||||
list(REMOVE_ITEM VMCoreSources ValueMapTest.cpp)
|
||||
list(REMOVE_ITEM IRSources ValueMapTest.cpp)
|
||||
endif()
|
||||
|
||||
# HACK: Declare a couple of source files as optionally compiled to satisfy the
|
||||
|
@ -31,6 +31,6 @@ set(LLVM_OPTIONAL_SOURCES
|
|||
ValueMapTest.cpp
|
||||
)
|
||||
|
||||
add_llvm_unittest(VMCoreTests
|
||||
${VMCoreSources}
|
||||
add_llvm_unittest(IRTests
|
||||
${IRSources}
|
||||
)
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/ConstantsTest.cpp - Constants unit tests ------===//
|
||||
//===- llvm/unittest/IR/ConstantsTest.cpp - Constants unit tests ----------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/IRBuilderTest.cpp - IRBuilder tests -----------===//
|
||||
//===- llvm/unittest/IR/IRBuilderTest.cpp - IRBuilder tests ---------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/InstructionsTest.cpp - Instructions unit tests ===//
|
||||
//===- llvm/unittest/IR/InstructionsTest.cpp - Instructions unit tests ----===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
##===- unittests/VMCore/Makefile ---------------------------*- Makefile -*-===##
|
||||
##===- unittests/IR/Makefile -------------------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
|
@ -8,7 +8,7 @@
|
|||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../..
|
||||
TESTNAME = VMCore
|
||||
TESTNAME = IR
|
||||
LINK_COMPONENTS := core ipa asmparser
|
||||
|
||||
include $(LEVEL)/Makefile.config
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/Metadata.cpp - Metadata unit tests ------------===//
|
||||
//===- llvm/unittest/IR/Metadata.cpp - Metadata unit tests ----------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/PassManager.cpp - Constants unit tests ------===//
|
||||
//===- llvm/unittest/IR/PassManager.cpp - PassManager unit tests ----------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/TypesTest.cpp - Type unit tests ---------------===//
|
||||
//===- llvm/unittest/IR/TypesTest.cpp - Type unit tests -------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/VerifierTest.cpp - Verifier unit tests --------===//
|
||||
//===- llvm/unittest/IR/VerifierTest.cpp - Verifier unit tests ------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -1,4 +1,4 @@
|
|||
//===- llvm/unittest/VMCore/WaymarkTest.cpp - getUser() unit tests --------===//
|
||||
//===- llvm/unittest/IR/WaymarkTest.cpp - getUser() unit tests ------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
LEVEL = ..
|
||||
|
||||
PARALLEL_DIRS = ADT ExecutionEngine Support Transforms VMCore Analysis Bitcode
|
||||
PARALLEL_DIRS = ADT ExecutionEngine Support Transforms IR Analysis Bitcode
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
Loading…
Reference in New Issue