summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2008-05-13 01:48:26 +0000
committerNate Begeman <natebegeman@mac.com>2008-05-13 01:48:26 +0000
commit53c5c62d6d144ef7c51414d7357579a9e7d43384 (patch)
treee5937f6851441b85ec34a039271651378220cfb1 /llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
parent50f7ef30bbe0b38b3eeaac094eb6fae24cb26428 (diff)
downloadbcm5719-llvm-53c5c62d6d144ef7c51414d7357579a9e7d43384.tar.gz
bcm5719-llvm-53c5c62d6d144ef7c51414d7357579a9e7d43384.zip
80 col / tabs fixes
llvm-svn: 51021
Diffstat (limited to 'llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
index bbb3a8a3447..4662e05aba5 100644
--- a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
+++ b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
@@ -327,8 +327,8 @@ bool DSE::handleEndBlock(BasicBlock& BB,
// If we encounter a use of the pointer, it is no longer considered dead
if (LoadInst* L = dyn_cast<LoadInst>(BBI)) {
- // However, if this load is unused and not volatile, we can go ahead and remove it,
- // and not have to worry about it making our pointer undead!
+ // However, if this load is unused and not volatile, we can go ahead and
+ // remove it, and not have to worry about it making our pointer undead!
if (L->use_empty() && !L->isVolatile()) {
MD.removeInstruction(L);
OpenPOWER on IntegriCloud