diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-12-06 23:57:07 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-12-06 23:57:07 +0000 |
commit | 9e1994698d3da8cecec5a6cc5e95b18db913ef4b (patch) | |
tree | 20a23f5e416ff59c063b01b2934dda18fa620e1b /llvm/lib/Target/ARM/ARMFixupKinds.h | |
parent | f6c7308bb1e04a08e711abec9ee3afb1a7dc4aab (diff) | |
download | bcm5719-llvm-9e1994698d3da8cecec5a6cc5e95b18db913ef4b.tar.gz bcm5719-llvm-9e1994698d3da8cecec5a6cc5e95b18db913ef4b.zip |
Add fixup for Thumb1 BL/BLX instructions.
llvm-svn: 121072
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFixupKinds.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMFixupKinds.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFixupKinds.h b/llvm/lib/Target/ARM/ARMFixupKinds.h index 1ec0ba42435..c905611906f 100644 --- a/llvm/lib/Target/ARM/ARMFixupKinds.h +++ b/llvm/lib/Target/ARM/ARMFixupKinds.h @@ -25,9 +25,11 @@ enum Fixups { // fixup_arm_adr_pcrel_12 - 12-bit PC relative relocation for the ADR // instruction. fixup_arm_adr_pcrel_12, - // fixup_arm_brnach - 24-bit PC relative relocation for direct branch + // fixup_arm_branch - 24-bit PC relative relocation for direct branch // instructions. fixup_arm_branch, + // fixup_arm_thumb_bl - Fixup for Thumb BL/BLX instructions. + fixup_arm_thumb_bl, // The next two are for the movt/movw pair // the 16bit imm field are split into imm{15-12} and imm{11-0} |