arm_cortex_a8_local.s 391 B

123456789101112131415161718192021222324252627282930313233
  1. .syntax unified
  2. .cpu cortex-a8
  3. .text
  4. .align 12
  5. _start:
  6. .type _start,%function
  7. bx lr
  8. .size _start,.-_start
  9. .align 8
  10. .thumb
  11. .type .Lfunc,%function
  12. .Lfunc:
  13. bx lr
  14. .size .Lfunc,.-.Lfunc
  15. .align 11
  16. .space 2042
  17. .align 1
  18. .thumb
  19. .global _test
  20. .type _test,%function
  21. _test:
  22. add.w r0, r0, 0
  23. bpl.w .Lfunc
  24. .size _test,.-_test
  25. # Align stub table for address matching.
  26. .align 12