[llvm-commits] [llvm] r125709 - /llvm/trunk/docs/ProgrammersManual.html
Nick Lewycky
nicholas at mxc.ca
Wed Feb 16 18:19:22 PST 2011
Author: nicholas
Date: Wed Feb 16 20:19:22 2011
New Revision: 125709
URL: http://llvm.org/viewvc/llvm-project?rev=125709&view=rev
Log:
Fix thinko, basic blocks are SESE. The exits may have many edges though.
Modified:
llvm/trunk/docs/ProgrammersManual.html
Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=125709&r1=125708&r2=125709&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Wed Feb 16 20:19:22 2011
@@ -3856,7 +3856,7 @@
Class</a><br>
Superclass: <a href="#Value"><tt>Value</tt></a></p>
-<p>This class represents a single entry multiple exit section of the code,
+<p>This class represents a single entry single exit section of the code,
commonly known as a basic block by the compiler community. The
<tt>BasicBlock</tt> class maintains a list of <a
href="#Instruction"><tt>Instruction</tt></a>s, which form the body of the block.
More information about the llvm-commits
mailing list