Updates to support
* Changes in PHI node structure
* Change to PHI syntax

llvm-svn: 24
diff --git a/llvm/lib/AsmParser/llvmAsmParser.h b/llvm/lib/AsmParser/llvmAsmParser.h
index 64e460f..6ee8269 100644
--- a/llvm/lib/AsmParser/llvmAsmParser.h
+++ b/llvm/lib/AsmParser/llvmAsmParser.h
@@ -11,6 +11,7 @@
   list<MethodArgument*>   *MethodArgList;
   list<Value*>            *ValueList;
   list<const Type*>       *TypeList;
+  list<pair<Value*, BasicBlock*> > *PHIList;   // Represent the RHS of PHI node
   list<pair<ConstPoolVal*, BasicBlock*> > *JumpTable;
   vector<ConstPoolVal*>   *ConstVector;