From: Jakob Stoklund Olesen Date: Sat, 15 Aug 2009 13:10:15 +0000 (+0000) Subject: Allow double defs in the machine code verifier after the addPreRegAlloc passes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4af85b2328d432960371efeb092a70a8d9c25227;p=oota-llvm.git 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 b0c3b80c9c6..182f9cfc82e 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -291,7 +291,7 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, // Run pre-ra passes. if (addPreRegAlloc(PM, OptLevel)) - printAndVerify(PM); + printAndVerify(PM, /* allowDoubleDefs= */ true); // Perform register allocation. PM.add(createRegisterAllocator());