Rename VMCore directory to IR.
authorChandler Carruth <chandlerc@gmail.com>
Wed, 2 Jan 2013 09:10:48 +0000 (09:10 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 2 Jan 2013 09:10:48 +0000 (09:10 +0000)
commitc2c50cdcdc19a1bca993c06d13d8cdca87083ce4
treee46b4b6d4d44228df1e870f690506dbf296954c1
parent3af932322859285988a4c53551540fc0658b2116
Rename VMCore directory to IR.

Aside from moving the actual files, this patch only updates the build
system and the source file comments under lib/... that are relevant.

I'll be updating other docs and other files in smaller subsequnet
commits.

While I've tried to test this, but it is entirely possible that there
will still be some build system fallout.

Also, note that I've not changed the library name itself: libLLVMCore.a
is still the library name. I'd be interested in others' opinions about
whether we should rename this as well (I think we should, just not sure
what it might break)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171359 91177308-0d34-0410-b5e6-96231b3b80d8
102 files changed:
lib/Analysis/ConstantFolding.cpp
lib/CMakeLists.txt
lib/IR/AsmWriter.cpp [new file with mode: 0644]
lib/IR/AttributeImpl.h [new file with mode: 0644]
lib/IR/Attributes.cpp [new file with mode: 0644]
lib/IR/AutoUpgrade.cpp [new file with mode: 0644]
lib/IR/BasicBlock.cpp [new file with mode: 0644]
lib/IR/CMakeLists.txt [new file with mode: 0644]
lib/IR/ConstantFold.cpp [new file with mode: 0644]
lib/IR/ConstantFold.h [new file with mode: 0644]
lib/IR/Constants.cpp [new file with mode: 0644]
lib/IR/ConstantsContext.h [new file with mode: 0644]
lib/IR/Core.cpp [new file with mode: 0644]
lib/IR/DIBuilder.cpp [new file with mode: 0644]
lib/IR/DataLayout.cpp [new file with mode: 0644]
lib/IR/DebugInfo.cpp [new file with mode: 0644]
lib/IR/DebugLoc.cpp [new file with mode: 0644]
lib/IR/Dominators.cpp [new file with mode: 0644]
lib/IR/Function.cpp [new file with mode: 0644]
lib/IR/GCOV.cpp [new file with mode: 0644]
lib/IR/GVMaterializer.cpp [new file with mode: 0644]
lib/IR/Globals.cpp [new file with mode: 0644]
lib/IR/IRBuilder.cpp [new file with mode: 0644]
lib/IR/InlineAsm.cpp [new file with mode: 0644]
lib/IR/Instruction.cpp [new file with mode: 0644]
lib/IR/Instructions.cpp [new file with mode: 0644]
lib/IR/IntrinsicInst.cpp [new file with mode: 0644]
lib/IR/LLVMBuild.txt [new file with mode: 0644]
lib/IR/LLVMContext.cpp [new file with mode: 0644]
lib/IR/LLVMContextImpl.cpp [new file with mode: 0644]
lib/IR/LLVMContextImpl.h [new file with mode: 0644]
lib/IR/LeakDetector.cpp [new file with mode: 0644]
lib/IR/LeaksContext.h [new file with mode: 0644]
lib/IR/Makefile [new file with mode: 0644]
lib/IR/Metadata.cpp [new file with mode: 0644]
lib/IR/Module.cpp [new file with mode: 0644]
lib/IR/Pass.cpp [new file with mode: 0644]
lib/IR/PassManager.cpp [new file with mode: 0644]
lib/IR/PassRegistry.cpp [new file with mode: 0644]
lib/IR/PrintModulePass.cpp [new file with mode: 0644]
lib/IR/SymbolTableListTraitsImpl.h [new file with mode: 0644]
lib/IR/TargetTransformInfo.cpp [new file with mode: 0644]
lib/IR/Type.cpp [new file with mode: 0644]
lib/IR/TypeFinder.cpp [new file with mode: 0644]
lib/IR/Use.cpp [new file with mode: 0644]
lib/IR/User.cpp [new file with mode: 0644]
lib/IR/Value.cpp [new file with mode: 0644]
lib/IR/ValueSymbolTable.cpp [new file with mode: 0644]
lib/IR/ValueTypes.cpp [new file with mode: 0644]
lib/IR/Verifier.cpp [new file with mode: 0644]
lib/LLVMBuild.txt
lib/Makefile
lib/VMCore/AsmWriter.cpp [deleted file]
lib/VMCore/AttributeImpl.h [deleted file]
lib/VMCore/Attributes.cpp [deleted file]
lib/VMCore/AutoUpgrade.cpp [deleted file]
lib/VMCore/BasicBlock.cpp [deleted file]
lib/VMCore/CMakeLists.txt [deleted file]
lib/VMCore/ConstantFold.cpp [deleted file]
lib/VMCore/ConstantFold.h [deleted file]
lib/VMCore/Constants.cpp [deleted file]
lib/VMCore/ConstantsContext.h [deleted file]
lib/VMCore/Core.cpp [deleted file]
lib/VMCore/DIBuilder.cpp [deleted file]
lib/VMCore/DataLayout.cpp [deleted file]
lib/VMCore/DebugInfo.cpp [deleted file]
lib/VMCore/DebugLoc.cpp [deleted file]
lib/VMCore/Dominators.cpp [deleted file]
lib/VMCore/Function.cpp [deleted file]
lib/VMCore/GCOV.cpp [deleted file]
lib/VMCore/GVMaterializer.cpp [deleted file]
lib/VMCore/Globals.cpp [deleted file]
lib/VMCore/IRBuilder.cpp [deleted file]
lib/VMCore/InlineAsm.cpp [deleted file]
lib/VMCore/Instruction.cpp [deleted file]
lib/VMCore/Instructions.cpp [deleted file]
lib/VMCore/IntrinsicInst.cpp [deleted file]
lib/VMCore/LLVMBuild.txt [deleted file]
lib/VMCore/LLVMContext.cpp [deleted file]
lib/VMCore/LLVMContextImpl.cpp [deleted file]
lib/VMCore/LLVMContextImpl.h [deleted file]
lib/VMCore/LeakDetector.cpp [deleted file]
lib/VMCore/LeaksContext.h [deleted file]
lib/VMCore/Makefile [deleted file]
lib/VMCore/Metadata.cpp [deleted file]
lib/VMCore/Module.cpp [deleted file]
lib/VMCore/Pass.cpp [deleted file]
lib/VMCore/PassManager.cpp [deleted file]
lib/VMCore/PassRegistry.cpp [deleted file]
lib/VMCore/PrintModulePass.cpp [deleted file]
lib/VMCore/SymbolTableListTraitsImpl.h [deleted file]
lib/VMCore/TargetTransformInfo.cpp [deleted file]
lib/VMCore/Type.cpp [deleted file]
lib/VMCore/TypeFinder.cpp [deleted file]
lib/VMCore/Use.cpp [deleted file]
lib/VMCore/User.cpp [deleted file]
lib/VMCore/Value.cpp [deleted file]
lib/VMCore/ValueSymbolTable.cpp [deleted file]
lib/VMCore/ValueTypes.cpp [deleted file]
lib/VMCore/Verifier.cpp [deleted file]
utils/GenLibDeps.pl
utils/llvm-build/llvmbuild/main.py