1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Fix typo in DEBUG printout.

llvm-svn: 14196
This commit is contained in:
Brian Gaeke 2004-06-17 07:26:52 +00:00
parent 1b8f37597d
commit a46100448f

View File

@ -549,7 +549,7 @@ void LICM::sink(Instruction &I) {
/// that is safe to hoist, this instruction is called to do the dirty work. /// that is safe to hoist, this instruction is called to do the dirty work.
/// ///
void LICM::hoist(Instruction &I) { void LICM::hoist(Instruction &I) {
DEBUG(std::cerr << "LICM hoisting to" << Preheader->getName() DEBUG(std::cerr << "LICM hoisting to " << Preheader->getName()
<< ": " << I); << ": " << I);
// Remove the instruction from its current basic block... but don't delete the // Remove the instruction from its current basic block... but don't delete the