- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for IsARMBFX (0.17 sec)
-
src/cmd/asm/internal/arch/arm.go
switch op { case arm.AMRC, aMCR: // Note: aMCR is defined in this package. return true } return false } // IsARMBFX reports whether the op (as defined by an arm.A* constant) is one the // BFX-like instructions which are in the form of "op $width, $LSB, (Reg,) Reg". func IsARMBFX(op obj.As) bool { switch op { case arm.ABFX, arm.ABFXU, arm.ABFC, arm.ABFI: return true } return false }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 6.1K bytes - Viewed (0)