From: Gordon Henriksen Date: Sun, 4 Nov 2007 18:17:58 +0000 (+0000) Subject: Validation fix. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=873390ee570aba88542b12d60a3c41d760fc4053;p=oota-llvm.git Validation fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43679 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/Passes.html b/docs/Passes.html index b7f2ca0fc7b..320f8e8a830 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -1856,8 +1856,8 @@ if (i == j)
  • The code is in valid SSA form.
  • It should be illegal to put a label into any other type (like a structure) or to return one. [except constant arrays!]
  • -
  • Only phi nodes can be self referential: 'add int %0, %0 ; :0' is - bad.
  • +
  • Only phi nodes can be self referential: %x = add int %x, %x is + invalid.
  • PHI nodes must have an entry for each predecessor, with no extras.
  • PHI nodes must be the first thing in a basic block, all grouped together.