diff options
| author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 18:17:58 +0000 |
|---|---|---|
| committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 18:17:58 +0000 |
| commit | 873390ee570aba88542b12d60a3c41d760fc4053 (patch) | |
| tree | 17e91f2a3ccd6d19781efbe9a2704a4cf09b5749 /docs/Passes.html | |
| parent | 23a8ce5b958df2d954e7f940f2abf0ed36b0e072 (diff) | |
| download | external_llvm-873390ee570aba88542b12d60a3c41d760fc4053.zip external_llvm-873390ee570aba88542b12d60a3c41d760fc4053.tar.gz external_llvm-873390ee570aba88542b12d60a3c41d760fc4053.tar.bz2 | |
Validation fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43679 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Passes.html')
| -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 b7f2ca0..320f8e8 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -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> |
