diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-25 08:10:21 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-25 08:10:21 +0000 |
commit | 4e1cf1e7d7faa12fefd27b8c0bcdd923d277811d (patch) | |
tree | 60a019a99c0e416b6181a664fe830bc1c662aa0d /llvm/lib | |
parent | 5fd28b54c7680b21b43c474d92d1328fc7ecd035 (diff) | |
download | bcm5719-llvm-4e1cf1e7d7faa12fefd27b8c0bcdd923d277811d.tar.gz bcm5719-llvm-4e1cf1e7d7faa12fefd27b8c0bcdd923d277811d.zip |
Fix some cosmetics in comments.
llvm-svn: 52704
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp b/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp index 63ac3c5e927..6a0d6747875 100644 --- a/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp +++ b/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp @@ -72,7 +72,7 @@ namespace { /// Liveness enum - During our initial pass over the program, we determine /// that things are either alive or maybe alive. We don't mark anything - /// explicitely dead (even if we know they are), since anything not alive + /// explicitly dead (even if we know they are), since anything not alive /// with no registered uses (in Uses) will never be marked alive and will /// thus become dead in the end. enum Liveness { Live, MaybeLive }; @@ -616,7 +616,7 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) { if (RetTypes.size() > 1 || STy && STy->getNumElements() == RetTypes.size()) // More than one return type? Return a struct with them. Also, if we used // to return a struct and didn't change the number of return values, - // return a struct again. This prevents chaning {something} into something + // return a struct again. This prevents changing {something} into something // and {} into void. // Make the new struct packed if we used to return a packed struct // already. @@ -626,7 +626,7 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) { // return a struct with that simple value before. NRetTy = RetTypes.front(); else if (RetTypes.size() == 0) - // No return types? Make it void, but only if we didn't use to return {} + // No return types? Make it void, but only if we didn't use to return {}. NRetTy = Type::VoidTy; } else { NRetTy = Type::VoidTy; @@ -685,8 +685,8 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) { return false; // The function type is only allowed to be different if we actually left out - // an argument or return value - assert(Changed && "Function type changed while no arguments or retrurn values" + // an argument or return value. + assert(Changed && "Function type changed while no arguments or return values" "were removed!"); // Create the new function body and insert it into the module... @@ -694,7 +694,7 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) { NF->copyAttributesFrom(F); NF->setParamAttrs(NewPAL); // Insert the new function before the old function, so we won't be processing - // it again + // it again. F->getParent()->getFunctionList().insert(F, NF); NF->takeName(F); |