diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-11-18 20:36:57 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-11-18 20:36:57 +0000 |
commit | 8f16e02fc95c9b197d38bcd681f2612d36ed5c11 (patch) | |
tree | 3f1d6ce58e2a6821cd52b46ffc60b2b5fc854aa2 /include/llvm/CodeGen/MachineFunction.h | |
parent | 1e78aa445c5b5b466cea4478f3f9034d4be7278e (diff) |
Allow the machine verifier to be run outside the PassManager.
Verify LiveVariables information when present.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index d2f52241a2..f1bfa01458 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -233,7 +233,7 @@ public: /// verify - Run the current MachineFunction through the machine code /// verifier, useful for debugger use. - void verify() const; + void verify(Pass *p=NULL, bool allowDoubleDefs=false) const; // Provide accessors for the MachineBasicBlock list... typedef BasicBlockListType::iterator iterator; |