Validation fix.
authorGordon Henriksen <gordonhenriksen@mac.com>
Sun, 4 Nov 2007 18:17:58 +0000 (18:17 +0000)
committerGordon Henriksen <gordonhenriksen@mac.com>
Sun, 4 Nov 2007 18:17:58 +0000 (18:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43679 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Passes.html

index b7f2ca0fc7b16b57ff09f988680c115185ed9b1e..320f8e8a830fc11369eec5b6074160869100ac27 100644 (file)
@@ -1856,8 +1856,8 @@ if (i == j)
     <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>Only phi nodes can be self referential: 'add int %0, %0 ; <int>:0' is
-        bad.</li>
+    <li>Only phi nodes can be self referential: <tt>%x = add int %x, %x</tt> is
+        invalid.</li>
     <li>PHI nodes must have an entry for each predecessor, with no extras.</li>
     <li>PHI nodes must be the first thing in a basic block, all grouped
         together.</li>