[llvm] r357473 - [mips] Remove the override of the `isMachineVerifierClean()`

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 2 06:57:39 PDT 2019


Author: atanasyan
Date: Tue Apr  2 06:57:38 2019
New Revision: 357473

URL: http://llvm.org/viewvc/llvm-project?rev=357473&view=rev
Log:
[mips] Remove the override of the `isMachineVerifierClean()`

All issues found by machine verifier in MIPS target have been fixed.

Modified:
    llvm/trunk/lib/Target/Mips/MipsTargetMachine.h

Modified: llvm/trunk/lib/Target/Mips/MipsTargetMachine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsTargetMachine.h?rev=357473&r1=357472&r2=357473&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsTargetMachine.h (original)
+++ llvm/trunk/lib/Target/Mips/MipsTargetMachine.h Tue Apr  2 06:57:38 2019
@@ -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.




More information about the llvm-commits mailing list