1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

Revert "[AssumeBundles] Move to IR so it can be used by Analysis"

This breaks the modules build:

http://green.lab.llvm.org/green/job/clang-stage2-Rthinlto/
http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/

This reverts commit 57c964aaa76bfaa908398fbd9d8c9d6d19856859.
This commit is contained in:
Jonas Devlieghere 2020-03-09 08:56:03 -07:00
parent 09c8bd89d5
commit 4618a07164
9 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,6 @@ add_llvm_component_library(LLVMCore
Instruction.cpp Instruction.cpp
Instructions.cpp Instructions.cpp
IntrinsicInst.cpp IntrinsicInst.cpp
KnowledgeRetention.cpp
LLVMContext.cpp LLVMContext.cpp
LLVMContextImpl.cpp LLVMContextImpl.cpp
LLVMRemarkStreamer.cpp LLVMRemarkStreamer.cpp

View File

@ -59,7 +59,6 @@
#include "llvm/CodeGen/UnreachableBlockElim.h" #include "llvm/CodeGen/UnreachableBlockElim.h"
#include "llvm/IR/Dominators.h" #include "llvm/IR/Dominators.h"
#include "llvm/IR/IRPrintingPasses.h" #include "llvm/IR/IRPrintingPasses.h"
#include "llvm/IR/KnowledgeRetention.h"
#include "llvm/IR/PassManager.h" #include "llvm/IR/PassManager.h"
#include "llvm/IR/SafepointIRVerifier.h" #include "llvm/IR/SafepointIRVerifier.h"
#include "llvm/IR/Verifier.h" #include "llvm/IR/Verifier.h"
@ -180,6 +179,7 @@
#include "llvm/Transforms/Utils/CanonicalizeAliases.h" #include "llvm/Transforms/Utils/CanonicalizeAliases.h"
#include "llvm/Transforms/Utils/EntryExitInstrumenter.h" #include "llvm/Transforms/Utils/EntryExitInstrumenter.h"
#include "llvm/Transforms/Utils/InjectTLIMappings.h" #include "llvm/Transforms/Utils/InjectTLIMappings.h"
#include "llvm/Transforms/Utils/KnowledgeRetention.h"
#include "llvm/Transforms/Utils/LCSSA.h" #include "llvm/Transforms/Utils/LCSSA.h"
#include "llvm/Transforms/Utils/LibCallsShrinkWrap.h" #include "llvm/Transforms/Utils/LibCallsShrinkWrap.h"
#include "llvm/Transforms/Utils/LoopSimplify.h" #include "llvm/Transforms/Utils/LoopSimplify.h"

View File

@ -29,6 +29,7 @@ add_llvm_component_library(LLVMTransformUtils
InjectTLIMappings.cpp InjectTLIMappings.cpp
InstructionNamer.cpp InstructionNamer.cpp
IntegerDivision.cpp IntegerDivision.cpp
KnowledgeRetention.cpp
LCSSA.cpp LCSSA.cpp
LibCallsShrinkWrap.cpp LibCallsShrinkWrap.cpp
Local.cpp Local.cpp

View File

@ -6,7 +6,7 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/IR/KnowledgeRetention.h" #include "llvm/Transforms/Utils/KnowledgeRetention.h"
#include "llvm/ADT/DenseSet.h" #include "llvm/ADT/DenseSet.h"
#include "llvm/IR/InstIterator.h" #include "llvm/IR/InstIterator.h"
#include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/IntrinsicInst.h"

View File

@ -24,7 +24,6 @@ add_llvm_unittest(IRTests
IRBuilderTest.cpp IRBuilderTest.cpp
InstructionsTest.cpp InstructionsTest.cpp
IntrinsicsTest.cpp IntrinsicsTest.cpp
KnowledgeRetentionTest.cpp
LegacyPassManagerTest.cpp LegacyPassManagerTest.cpp
MDBuilderTest.cpp MDBuilderTest.cpp
ManglerTest.cpp ManglerTest.cpp

View File

@ -15,6 +15,7 @@ add_llvm_unittest(UtilsTests
CodeMoverUtilsTest.cpp CodeMoverUtilsTest.cpp
FunctionComparatorTest.cpp FunctionComparatorTest.cpp
IntegerDivisionTest.cpp IntegerDivisionTest.cpp
KnowledgeRetentionTest.cpp
LocalTest.cpp LocalTest.cpp
LoopRotationUtilsTest.cpp LoopRotationUtilsTest.cpp
LoopUtilsTest.cpp LoopUtilsTest.cpp

View File

@ -6,7 +6,7 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/IR/KnowledgeRetention.h" #include "llvm/Transforms/Utils/KnowledgeRetention.h"
#include "llvm/AsmParser/Parser.h" #include "llvm/AsmParser/Parser.h"
#include "llvm/IR/CallSite.h" #include "llvm/IR/CallSite.h"
#include "llvm/IR/LLVMContext.h" #include "llvm/IR/LLVMContext.h"