export-class-def.s 439 B

12345678910111213141516171819202122
  1. .text
  2. .globl protected_foo
  3. .type protected_foo, @function
  4. .protected protected_foo
  5. protected_foo:
  6. .word 0
  7. ret
  8. .size protected_foo, . - protected_foo
  9. .globl hidden_foo
  10. .type hidden_foo, @function
  11. .hidden hidden_foo
  12. hidden_foo:
  13. .word 0
  14. ret
  15. .size hidden_foo, . - hidden_foo
  16. .globl internal_foo
  17. .type internal_foo, @function
  18. .internal internal_foo
  19. internal_foo:
  20. .word 0
  21. ret
  22. .size internal_foo, . - internal_foo