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