pr21430.s 215 B

123456789101112131415
  1. .globl _start, foo, bar
  2. .section ".text.start", "ax"
  3. _start:
  4. bl foo
  5. .space 0x7000000
  6. .section ".text.bar", "ax"
  7. bar:
  8. .space 0x1000000
  9. .size bar, .-bar
  10. .section ".text.foo", "ax"
  11. foo:
  12. b _start