diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-12-18 01:53:06 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-12-18 01:53:06 +0000 |
commit | a4dda5368698df66dd7af0cac47f729f66ea1514 (patch) | |
tree | 8772aefcbac0e4a0ddbb95f24cb9fed24fcfc8d3 /llvm/lib/Target/ARM | |
parent | 5c844d51c8b059b761e3fc092962bbf4a07d6f1a (diff) | |
download | bcm5719-llvm-a4dda5368698df66dd7af0cac47f729f66ea1514.tar.gz bcm5719-llvm-a4dda5368698df66dd7af0cac47f729f66ea1514.zip |
RemoveUnusedCPEntries can change things. Track it.
llvm-svn: 122129
Diffstat (limited to 'llvm/lib/Target/ARM')
-rw-r--r-- | llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp index 126078aae3c..8c7ce904e1c 100644 --- a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp @@ -327,7 +327,7 @@ bool ARMConstantIslands::runOnMachineFunction(MachineFunction &MF) { /// Remove dead constant pool entries. - RemoveUnusedCPEntries(); + MadeChange |= RemoveUnusedCPEntries(); // Iteratively place constant pool entries and fix up branches until there // is no change. |