comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/ExplodeLoop.java @ 19629:0e90dbf0b9fd

Add merge boolean property to ExplodeLoop annotation to indicate that backward branches should be merged if possible.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 27 Feb 2015 14:06:36 +0100
parents 494b818b527c
children
comparison
equal deleted inserted replaced
19628:34e984e9560e 19629:0e90dbf0b9fd
31 * unrolled. 31 * unrolled.
32 */ 32 */
33 @Retention(RetentionPolicy.RUNTIME) 33 @Retention(RetentionPolicy.RUNTIME)
34 @Target(ElementType.METHOD) 34 @Target(ElementType.METHOD)
35 public @interface ExplodeLoop { 35 public @interface ExplodeLoop {
36 boolean merge() default false;
36 } 37 }