aboutsummaryrefslogtreecommitdiff
path: root/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
commita72acf938902ea8ae2776cad7327257e88a63a54 (patch)
treed6722df62150fa62829cfcd279fc59a8b4c0ab84 /lib/Transforms/Scalar/DeadStoreElimination.cpp
parentc9bdb006834a4ab0eae0e1b8742e87b0d64aac81 (diff)
80 col / tabs fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/DeadStoreElimination.cpp')
-rw-r--r--lib/Transforms/Scalar/DeadStoreElimination.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/DeadStoreElimination.cpp b/lib/Transforms/Scalar/DeadStoreElimination.cpp
index bbb3a8a344..4662e05aba 100644
--- a/lib/Transforms/Scalar/DeadStoreElimination.cpp
+++ b/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);