comparison graal/com.oracle.max.graal.nodes/src/com/oracle/max/graal/nodes/extended/MembarNode.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
41 @Override 41 @Override
42 public void generate(LIRGeneratorTool generator) { 42 public void generate(LIRGeneratorTool generator) {
43 generator.emitMembar(barriers); 43 generator.emitMembar(barriers);
44 } 44 }
45 45
46 @SuppressWarnings("unused")
46 @NodeIntrinsic 47 @NodeIntrinsic
47 public static void get(@ConstantNodeParameter int barriers) { 48 public static void get(@ConstantNodeParameter int barriers) {
48 throw new UnsupportedOperationException("This method may only be compiled with the Graal compiler"); 49 throw new UnsupportedOperationException("This method may only be compiled with the Graal compiler");
49 } 50 }
50 } 51 }