* Adds the instruction(s) to the instruction list.
* @param ilc The instruction list
* @param lval
*/
public static void createStore(InstructionListContext ilc, LValue lval) {
TypeCode type = TypeCode.getType(lval.getType()) ;
switch(lval.getLValueType()) {
case local: {
Var var = (Var)lval ;
createStore(type, var.index,ilc) ;
break ;