use of org.graalvm.compiler.lir.amd64.AMD64ByteSwapOp in project graal by oracle.
the class AMD64LIRGenerator method emitByteSwap.
@Override
public Variable emitByteSwap(Value input) {
Variable result = newVariable(LIRKind.combine(input));
append(new AMD64ByteSwapOp(result, input));
return result;
}
Aggregations