diff options
Diffstat (limited to 'llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp')
-rw-r--r-- | llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp b/llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp index d0a301ce5ee..b959c90ca30 100644 --- a/llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp +++ b/llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp @@ -250,8 +250,7 @@ void InsertCode4AllPhisInMeth(Method *method, TargetMachine &target) { PHINode *PN = (PHINode *) (*IIt); - Value *PhiCpRes = - new Value(PN->getType(), PN->getValueType() ); + Value *PhiCpRes = new Value(PN->getType(), PN->getValueType()); string *Name = new string("PhiCp:"); (*Name) += (int) PhiCpRes; |