11 lines
226 B
Java
11 lines
226 B
Java
|
package ex6;
|
||
|
|
||
|
import ch.usi.dag.disl.annotation.GuardMethod;
|
||
|
|
||
|
public class IsLoopInstructionGuard {
|
||
|
@GuardMethod
|
||
|
public static boolean isLoopInstruction(LoopContext lc) {
|
||
|
return lc.isLoopInstruction();
|
||
|
}
|
||
|
}
|