diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-28 04:47:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-28 04:47:06 +0000 |
commit | 46b3abc9f759ed4bbf88be611cc577b21a8ffa8b (patch) | |
tree | edbde855bf7826ff20b5e461af753eb0fb66b206 | |
parent | 5d81befc217bdd89ec17979797cfa297985e79d7 (diff) |
doc bug spotted by apinski
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85372 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/Passes.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Passes.html b/docs/Passes.html index 36e0419ad2..bbf6b3dc94 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -1787,8 +1787,8 @@ if (X < 3) {</pre> integrals f.e.</li> <li>All of the constants in a switch statement are of the correct type.</li> <li>The code is in valid SSA form.</li> - <li>It should be illegal to put a label into any other type (like a - structure) or to return one. [except constant arrays!]</li> + <li>It is illegal to put a label into any other type (like a structure) or + to return one.</li> <li>Only phi nodes can be self referential: <tt>%x = add i32 %x, %x</tt> is invalid.</li> <li>PHI nodes must have an entry for each predecessor, with no extras.</li> |