diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2019-04-02 13:57:38 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2019-04-02 13:57:38 +0000 |
commit | 4cefa15a149e60296e4fb24cce483b5630a4d168 (patch) | |
tree | 73434e157c94ae62ab0abdad4feacefa83096776 /llvm/lib | |
parent | 2634a141fdf40475d16fe7b50160c55817227d56 (diff) | |
download | bcm5719-llvm-4cefa15a149e60296e4fb24cce483b5630a4d168.tar.gz bcm5719-llvm-4cefa15a149e60296e4fb24cce483b5630a4d168.zip |
[mips] Remove the override of the `isMachineVerifierClean()`
All issues found by machine verifier in MIPS target have been fixed.
llvm-svn: 357473
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.h b/llvm/lib/Target/Mips/MipsTargetMachine.h index 280c50e77b8..a51f35511b5 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.h +++ b/llvm/lib/Target/Mips/MipsTargetMachine.h @@ -65,10 +65,6 @@ public: bool isLittleEndian() const { return isLittle; } const MipsABIInfo &getABI() const { return ABI; } - - bool isMachineVerifierClean() const override { - return false; - } }; /// Mips32/64 big endian target machine. |