diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-12-01 19:02:26 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-12-01 19:02:26 +0000 |
| commit | 5695098c4cf95437f676e8576f433cb941043119 (patch) | |
| tree | b894c1213cb0111ef7178c754f735acae7fadea5 /llvm/lib | |
| parent | 7f5b475852bd80f073c874530e0d4b321a60d716 (diff) | |
| download | bcm5719-llvm-5695098c4cf95437f676e8576f433cb941043119.tar.gz bcm5719-llvm-5695098c4cf95437f676e8576f433cb941043119.zip | |
Fix a mised reloc rename spot.
llvm-svn: 120585
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index 47c70ec1cce..641354c43cf 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -409,7 +409,7 @@ namespace { case FK_PCRel_2: case FK_PCRel_4: case ARM::fixup_arm_pcrel_12: - case ARM::fixup_arm_vfp_pcrel_12: + case ARM::fixup_arm_vfp_pcrel_10: case ARM::fixup_arm_branch: return true; } @@ -1457,7 +1457,7 @@ unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target, switch ((unsigned)Fixup.getKind()) { default: llvm_unreachable("invalid fixup kind!"); case ARM::fixup_arm_pcrel_12: - case ARM::fixup_arm_vfp_pcrel_12: + case ARM::fixup_arm_vfp_pcrel_10: assert(0 && "Unimplemented"); break; case ARM::fixup_arm_branch: return ELF::R_ARM_CALL; break; |

