ScheduleDAGInstrs: In functions with tail calls PseudoSourceValues are not non-aliasi...
[oota-llvm.git] / lib / CodeGen / MachineBasicBlock.cpp
index 98359b198545cd5ab71aff46e62f9cf6c5c3b93e..34131bbc16a56252e43ef451046413a65633523e 100644 (file)
@@ -250,7 +250,7 @@ std::string MachineBasicBlock::getFullName() const {
   if (getBasicBlock())
     Name += getBasicBlock()->getName();
   else
-    Name += (Twine("BB") + Twine(getNumber())).str();
+    Name += ("BB" + Twine(getNumber())).str();
   return Name;
 }