diff options
author | Matthias Braun <matze@braunis.de> | 2017-05-31 18:41:23 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2017-05-31 18:41:23 +0000 |
commit | d6a36ae282ba22fbe2cd73ec40b660fb6c480c6b (patch) | |
tree | 92c7236b4494751bc1691a4a86ce798a8992dff0 /llvm/lib/Target/Mips | |
parent | 53b34c844339c5c43cfab22d2f7160ad40f9512c (diff) | |
download | bcm5719-llvm-d6a36ae282ba22fbe2cd73ec40b660fb6c480c6b.tar.gz bcm5719-llvm-d6a36ae282ba22fbe2cd73ec40b660fb6c480c6b.zip |
TargetMachine: Indicate whether machine verifier passes.
This adds a callback to the LLVMTargetMachine that lets target indicate
that they do not pass the machine verifier checks in all cases yet.
This is intended to be a temporary measure while the targets are fixed
allowing us to enable the machine verifier by default with
EXPENSIVE_CHECKS enabled!
Differential Revision: https://reviews.llvm.org/D33696
llvm-svn: 304320
Diffstat (limited to 'llvm/lib/Target/Mips')
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.h b/llvm/lib/Target/Mips/MipsTargetMachine.h index 140d7133f87..a3462868cb1 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.h +++ b/llvm/lib/Target/Mips/MipsTargetMachine.h @@ -66,6 +66,10 @@ public: bool isLittleEndian() const { return isLittle; } const MipsABIInfo &getABI() const { return ABI; } + + bool isMachineVerifierClean() const override { + return false; + } }; /// Mips32/64 big endian target machine. |