Changeset View
Changeset View
Standalone View
Standalone View
llvm/docs/Extensions.rst
Show First 20 Lines • Show All 198 Lines • ▼ Show 20 Lines | .. code-block:: gas | ||||
.section .text,"ax",@progbits,unique,2 | .section .text,"ax",@progbits,unique,2 | ||||
nop | nop | ||||
The unique number is not present in the resulting object at all. It is just used | The unique number is not present in the resulting object at all. It is just used | ||||
in the assembler to differentiate the sections. | in the assembler to differentiate the sections. | ||||
The 'm' flag is mapped to SHF_LINK_ORDER. If it is present, a symbol | |||||
must be given that identifies the section to be placed is the | |||||
.sh_link. | |||||
.. code-block:: gas | |||||
.section .foo,"a",@progbits | |||||
.Ltmp: | |||||
.section .bar,"am",@progbits,.Ltmp | |||||
which is equivalent to just | |||||
.. code-block:: gas | |||||
.section .foo,"a",@progbits | |||||
.section .bar,"am",@progbits,.foo | |||||
Target Specific Behaviour | Target Specific Behaviour | ||||
========================= | ========================= | ||||
X86 | X86 | ||||
--- | --- | ||||
Relocations | Relocations | ||||
^^^^^^^^^^^ | ^^^^^^^^^^^ | ||||
▲ Show 20 Lines • Show All 58 Lines • Show Last 20 Lines |