summaryrefslogtreecommitdiffstats
path: root/courgette/assembly_program.h
diff options
context:
space:
mode:
Diffstat (limited to 'courgette/assembly_program.h')
-rw-r--r--courgette/assembly_program.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/courgette/assembly_program.h b/courgette/assembly_program.h
index 2a68e51..bb2d34c 100644
--- a/courgette/assembly_program.h
+++ b/courgette/assembly_program.h
@@ -71,9 +71,12 @@ class AssemblyProgram {
// Generates an entire base relocation table.
CheckBool EmitPeRelocsInstruction() WARN_UNUSED_RESULT;
- // Generates an ELF style relocation table.
+ // Generates an ELF style relocation table for X86.
CheckBool EmitElfRelocationInstruction() WARN_UNUSED_RESULT;
+ // Generates an ELF style relocation table for ARM.
+ CheckBool EmitElfARMRelocationInstruction() WARN_UNUSED_RESULT;
+
// Following instruction will be assembled at address 'rva'.
CheckBool EmitOriginInstruction(RVA rva) WARN_UNUSED_RESULT;