List of all variables used by this instruction.
()
| 42 | * List of all variables used by this instruction. |
| 43 | */ |
| 44 | public List<Variable> getUsedVariables() { |
| 45 | ArrayList<Variable> vars = new ArrayList<Variable>(); |
| 46 | |
| 47 | for (Operand o : getOperands()) { |
| 48 | o.addUsedVariables(vars); |
| 49 | } |
| 50 | |
| 51 | return vars; |
| 52 | } |
| 53 | |
| 54 | public void simplifyOperands(Map<Operand, Operand> renameMap, boolean force) { |
| 55 | } |
no test coverage detected