1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[PowerPC] Remove the override of isMachineVerifierClean() to open machine verifier

After fix all asserts found by machine verifier in PowerPC target with following patches, 
we can activate machine verifier as default.

rL293769, rL348566, rL349030, rL349029, rL350113, rL350111, 
rL350799, rL350165, rL355378, rL352174, rL354762, rL350115

It's also found in PR#27456, https://bugs.llvm.org/show_bug.cgi?id=27456

Differential Revision: https://reviews.llvm.org/D59011

llvm-svn: 355798
This commit is contained in:
Zi Xuan Wu 2019-03-11 03:31:09 +00:00
parent 546a82add5
commit 79ca1ec2f9

View File

@ -58,10 +58,6 @@ public:
const Triple &TT = getTargetTriple();
return (TT.getArch() == Triple::ppc64 || TT.getArch() == Triple::ppc64le);
};
bool isMachineVerifierClean() const override {
return false;
}
};
} // end namespace llvm