diff options
author | Saleem Abdulrasool <abdulras@google.com> | 2020-01-02 11:40:49 -0800 |
---|---|---|
committer | Saleem Abdulrasool <abdulras@google.com> | 2020-01-02 11:41:21 -0800 |
commit | af340ae19f4bb109c63ca41663c97c45a39f512e (patch) | |
tree | 42b092bba210c93004ac39a3a5cbc27b1549fc64 /llvm/lib | |
parent | 94d4ca90040a5f55ee29f48043881437de56681e (diff) | |
download | bcm5719-llvm-af340ae19f4bb109c63ca41663c97c45a39f512e.tar.gz bcm5719-llvm-af340ae19f4bb109c63ca41663c97c45a39f512e.zip |
X86: remove unused variable
Remove the now unused-variable from
aa17d31edb00c66461093b5a7cd2f4a35dc143e9. This breaks `-Werror` builds.
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86FloatingPoint.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FloatingPoint.cpp b/llvm/lib/Target/X86/X86FloatingPoint.cpp index d7f4eba6299..13bbd6ccfce 100644 --- a/llvm/lib/Target/X86/X86FloatingPoint.cpp +++ b/llvm/lib/Target/X86/X86FloatingPoint.cpp @@ -978,7 +978,6 @@ void FPS::shuffleStackTop(const unsigned char *FixStack, void FPS::handleCall(MachineBasicBlock::iterator &I) { MachineInstr &MI = *I; unsigned STReturns = 0; - const MachineFunction* MF = I->getParent()->getParent(); for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { MachineOperand &Op = MI.getOperand(i); |