mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Rename the VMCore unittest tree to IR. Somehow was missed when doing the
library rename. llvm-svn: 171747
This commit is contained in:
parent
4c4c8c33e1
commit
bcfdf656b1
@ -12,4 +12,4 @@ add_subdirectory(Bitcode)
|
|||||||
add_subdirectory(Option)
|
add_subdirectory(Option)
|
||||||
add_subdirectory(Support)
|
add_subdirectory(Support)
|
||||||
add_subdirectory(Transforms)
|
add_subdirectory(Transforms)
|
||||||
add_subdirectory(VMCore)
|
add_subdirectory(IR)
|
||||||
|
@ -4,7 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||||||
ipa
|
ipa
|
||||||
)
|
)
|
||||||
|
|
||||||
set(VMCoreSources
|
set(IRSources
|
||||||
ConstantsTest.cpp
|
ConstantsTest.cpp
|
||||||
DominatorTreeTest.cpp
|
DominatorTreeTest.cpp
|
||||||
IRBuilderTest.cpp
|
IRBuilderTest.cpp
|
||||||
@ -22,7 +22,7 @@ set(VMCoreSources
|
|||||||
# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
|
# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
|
||||||
# See issue#331418 in Visual Studio.
|
# See issue#331418 in Visual Studio.
|
||||||
if(MSVC AND MSVC_VERSION LESS 1600)
|
if(MSVC AND MSVC_VERSION LESS 1600)
|
||||||
list(REMOVE_ITEM VMCoreSources ValueMapTest.cpp)
|
list(REMOVE_ITEM IRSources ValueMapTest.cpp)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# HACK: Declare a couple of source files as optionally compiled to satisfy the
|
# HACK: Declare a couple of source files as optionally compiled to satisfy the
|
||||||
@ -31,6 +31,6 @@ set(LLVM_OPTIONAL_SOURCES
|
|||||||
ValueMapTest.cpp
|
ValueMapTest.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(VMCoreTests
|
add_llvm_unittest(IRTests
|
||||||
${VMCoreSources}
|
${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
|
// 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
|
// 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
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
@ -1,4 +1,4 @@
|
|||||||
##===- unittests/VMCore/Makefile ---------------------------*- Makefile -*-===##
|
##===- unittests/IR/Makefile -------------------------------*- Makefile -*-===##
|
||||||
#
|
#
|
||||||
# The LLVM Compiler Infrastructure
|
# The LLVM Compiler Infrastructure
|
||||||
#
|
#
|
||||||
@ -8,7 +8,7 @@
|
|||||||
##===----------------------------------------------------------------------===##
|
##===----------------------------------------------------------------------===##
|
||||||
|
|
||||||
LEVEL = ../..
|
LEVEL = ../..
|
||||||
TESTNAME = VMCore
|
TESTNAME = IR
|
||||||
LINK_COMPONENTS := core ipa asmparser
|
LINK_COMPONENTS := core ipa asmparser
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.config
|
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
|
// 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
|
// 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
|
// 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
|
// 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
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
LEVEL = ..
|
LEVEL = ..
|
||||||
|
|
||||||
PARALLEL_DIRS = ADT ExecutionEngine Support Transforms VMCore Analysis Bitcode
|
PARALLEL_DIRS = ADT ExecutionEngine Support Transforms IR Analysis Bitcode
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user