property-no-copy.S 419 B

1234567891011121314151617181920
  1. #ifdef __LP64__
  2. # define ALIGN 3
  3. #else
  4. # define ALIGN 2
  5. #endif
  6. .section ".note.gnu.property", "a"
  7. .p2align ALIGN
  8. .long 1f - 0f /* name length. */
  9. .long 3f - 1f /* data length. */
  10. /* NT_GNU_PROPERTY_TYPE_0 */
  11. .long 5 /* note type. */
  12. 0:
  13. .asciz "GNU" /* vendor name. */
  14. 1:
  15. .p2align ALIGN
  16. /* GNU_PROPERTY_NO_COPY_ON_PROTECTED */
  17. .long 2 /* pr_type. */
  18. .long 0 /* pr_datasz. */
  19. .p2align ALIGN
  20. 3: