summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFunction.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2009-11-18 20:36:57 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2009-11-18 20:36:57 +0000
commit8f16e02fc95c9b197d38bcd681f2612d36ed5c11 (patch)
tree3f1d6ce58e2a6821cd52b46ffc60b2b5fc854aa2 /include/llvm/CodeGen/MachineFunction.h
parent1e78aa445c5b5b466cea4478f3f9034d4be7278e (diff)
downloadllvm-8f16e02fc95c9b197d38bcd681f2612d36ed5c11.tar.gz
llvm-8f16e02fc95c9b197d38bcd681f2612d36ed5c11.tar.bz2
llvm-8f16e02fc95c9b197d38bcd681f2612d36ed5c11.tar.xz
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.h2
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;