Closed notogawa closed 4 years ago
A SFU register is also treated as a corresponding SFU operator. This PR removes op_ which is prefixed to SFU operator to avoid a name conflict with SFU register.
op_
Before this PR,
mov(log, r0) op_log(rf0, r0)
After this PR,
mov(log, r0) log(rf0, r0)
Thanks! It makes easy to issue SFU instructions.
A SFU register is also treated as a corresponding SFU operator. This PR removes
op_
which is prefixed to SFU operator to avoid a name conflict with SFU register.Before this PR,
After this PR,