commit | 4af85b2328d432960371efeb092a70a8d9c25227 | [log] [tgz] |
---|---|---|
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | Sat Aug 15 13:10:15 2009 +0000 |
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | Sat Aug 15 13:10:15 2009 +0000 |
tree | 4db4a76dbe58aa59222fe2b9e664f9bf4958968d | |
parent | 1c8c15f6d2f3f7ffbeff5daa211907dff1b13650 [diff] [blame] |
Allow double defs in the machine code verifier after the addPreRegAlloc passes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79095 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index b0c3b80..182f9cf 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp
@@ -291,7 +291,7 @@ // Run pre-ra passes. if (addPreRegAlloc(PM, OptLevel)) - printAndVerify(PM); + printAndVerify(PM, /* allowDoubleDefs= */ true); // Perform register allocation. PM.add(createRegisterAllocator());