[llvm-commits] [llvm] r122129 - /llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp
Bill Wendling
isanbard at gmail.com
Fri Dec 17 17:53:06 PST 2010
Author: void
Date: Fri Dec 17 19:53:06 2010
New Revision: 122129
URL: http://llvm.org/viewvc/llvm-project?rev=122129&view=rev
Log:
RemoveUnusedCPEntries can change things. Track it.
Modified:
llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp?rev=122129&r1=122128&r2=122129&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMConstantIslandPass.cpp Fri Dec 17 19:53:06 2010
@@ -327,7 +327,7 @@
/// Remove dead constant pool entries.
- RemoveUnusedCPEntries();
+ MadeChange |= RemoveUnusedCPEntries();
// Iteratively place constant pool entries and fix up branches until there
// is no change.
More information about the llvm-commits
mailing list