square-arm.S.in 311 B

1234567891011121314
  1. #include "symbol-underscore.h"
  2. .text
  3. .globl SYMBOL_NAME(square_unsigned)
  4. /* Only supported with GAS */
  5. # if defined(__linux__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__)
  6. .type square_unsigned,%function
  7. #endif
  8. SYMBOL_NAME(square_unsigned):
  9. mul r1, r0, r0
  10. mov r0, r1
  11. mov pc, lr