diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-08-15 13:10:15 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2009-08-15 13:10:15 +0000 |
commit | 766352fbd2d4eea0cdbd69a6b3d438f9943473f0 (patch) | |
tree | e49332409f7616940bf3305bb0abc166eabd7a0d /llvm/lib/CodeGen | |
parent | ddd1d4e0f278b95bfa619350194fd0303341ec8f (diff) | |
download | bcm5719-llvm-766352fbd2d4eea0cdbd69a6b3d438f9943473f0.tar.gz bcm5719-llvm-766352fbd2d4eea0cdbd69a6b3d438f9943473f0.zip |
Allow double defs in the machine code verifier after the addPreRegAlloc passes.
llvm-svn: 79095
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index b0c3b80c9c6..182f9cfc82e 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/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()); |