Ruby  1.9.3p551(2014-11-13revision48407)
optinsn.inc
Go to the documentation of this file.
1 /* -*-c-*- *********************************************************/
2 /*******************************************************************/
3 /*******************************************************************/
15 static INSN *
16 insn_operands_unification(INSN *insnobj){
17 #ifdef OPT_OPERANDS_UNIFICATION
18  /* optimize rule */
19  switch(insnobj->insn_id){
20 
21 
22 
23  default:
24  /* do nothing */;
25  break;
26  }
27 #endif
28  return insnobj;
29 }
30 
31