From 61c9de7565235605b3dc43d2e4f28fc9733390c3 Mon Sep 17 00:00:00 2001 From: Francis Visoiu Mistrih Date: Mon, 29 Oct 2018 16:57:43 +0000 Subject: [X86] Enable the MachineVerifier by default The machine verifier was disabled for x86 by default. There are now only 9 tests failing, compared to what previously was between 20 and 30. This is a good opportunity to file bugs for all the remaining issues, then explicitly disable the failing tests and enabling the machine verifier by default. This allows us to avoid adding new tests that break the verifier. PR27481 llvm-svn: 345513 --- llvm/lib/Target/X86/X86TargetMachine.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Target/X86/X86TargetMachine.h b/llvm/lib/Target/X86/X86TargetMachine.h index 5b21cd82b5b..f5b45da0c3d 100644 --- a/llvm/lib/Target/X86/X86TargetMachine.h +++ b/llvm/lib/Target/X86/X86TargetMachine.h @@ -53,10 +53,6 @@ public: TargetLoweringObjectFile *getObjFileLowering() const override { return TLOF.get(); } - - bool isMachineVerifierClean() const override { - return false; - } }; } // end namespace llvm -- cgit v1.2.3