diff options
author | Reed Kotler <rkotler@mips.com> | 2013-11-07 11:56:33 +0000 |
---|---|---|
committer | Reed Kotler <rkotler@mips.com> | 2013-11-07 11:56:33 +0000 |
commit | e7af1ec97e5b6dd47692d19e945c643274c40ad9 (patch) | |
tree | 8c926c1e5b94c79e60b1eab3070bd6f18de0eb1c | |
parent | cd502b59e7da1dea574c67d15b27f4b5b294d181 (diff) | |
download | bcm5719-llvm-e7af1ec97e5b6dd47692d19e945c643274c40ad9.tar.gz bcm5719-llvm-e7af1ec97e5b6dd47692d19e945c643274c40ad9.zip |
Disable some code that is causing some warnings. It's in the process
of being converted and this path is not relevant to anything at this time
so I have just disabled it for a few days while I'm at the LLVM conference
and don't have time to complete it or properly fix it.
llvm-svn: 194201
-rw-r--r-- | llvm/lib/Target/Mips/MipsConstantIslandPass.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp b/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp index 6d6f942a242..83ef7f7b6b2 100644 --- a/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp +++ b/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp @@ -574,12 +574,12 @@ initializeFunctionInfo(const std::vector<MachineInstr*> &CPEMIs) { continue; int Opc = I->getOpcode(); +#ifdef IN_PROGRESS if (I->isBranch()) { bool isCond = false; unsigned Bits = 0; unsigned Scale = 1; int UOpc = Opc; - switch (Opc) { default: continue; // Ignore other JT branches @@ -587,9 +587,8 @@ initializeFunctionInfo(const std::vector<MachineInstr*> &CPEMIs) { // Record this immediate branch. unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale; ImmBranches.push_back(ImmBranch(I, MaxOffs, isCond, UOpc)); - } - +#endif if (Opc == Mips::CONSTPOOL_ENTRY) continue; |