summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-05-19 19:09:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-05-19 19:09:46 +0000
commitbc2eba1ca2d99836af6b5e12128c08e022930918 (patch)
treef97c273598214e17f84821dfb0044e6e7db0b716 /lib
parentc773de6d61114820d396e7e758d2594d3b55f92d (diff)
downloadllvm-bc2eba1ca2d99836af6b5e12128c08e022930918.tar.gz
llvm-bc2eba1ca2d99836af6b5e12128c08e022930918.tar.bz2
llvm-bc2eba1ca2d99836af6b5e12128c08e022930918.tar.xz
Fix a doxygen problem and break lines at 80 columns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Utils/BasicBlockUtils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/BasicBlockUtils.cpp b/lib/Transforms/Utils/BasicBlockUtils.cpp
index f344580634..769d1b2d78 100644
--- a/lib/Transforms/Utils/BasicBlockUtils.cpp
+++ b/lib/Transforms/Utils/BasicBlockUtils.cpp
@@ -68,10 +68,10 @@ void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) {
}
/// RemoveSuccessor - Change the specified terminator instruction such that its
-/// successor #SuccNum no longer exists. Because this reduces the outgoing
+/// successor SuccNum no longer exists. Because this reduces the outgoing
/// degree of the current basic block, the actual terminator instruction itself
-/// may have to be changed. In the case where the last successor of the block is
-/// deleted, a return instruction is inserted in its place which can cause a
+/// may have to be changed. In the case where the last successor of the block
+/// is deleted, a return instruction is inserted in its place which can cause a
/// surprising change in program behavior if it is not expected.
///
void llvm::RemoveSuccessor(TerminatorInst *TI, unsigned SuccNum) {