Author: gordon
Date: Sun Nov  4 12:17:58 2007
New Revision: 43679

URL: http://llvm.org/viewvc/llvm-project?rev=43679&view=rev
Log:
Validation fix.

Modified:
    llvm/trunk/docs/Passes.html

Modified: llvm/trunk/docs/Passes.html
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Passes.html?rev=43679&r1=43678&r2=43679&view=diff

==============================================================================
--- llvm/trunk/docs/Passes.html (original)
+++ llvm/trunk/docs/Passes.html Sun Nov  4 12:17:58 2007
@@ -1856,8 +1856,8 @@
     <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>


_______________________________________________
llvm-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to