Add ARM relocations to ELFYAML

Tested with check-all with no regressions.

llvm-svn: 223112
This commit is contained in:
Will Newton 2014-12-02 09:49:09 +00:00
parent 8c6e9ef676
commit 9efe625962
1 changed files with 3 additions and 0 deletions

View File

@ -435,6 +435,9 @@ void ScalarEnumerationTraits<ELFYAML::ELF_REL>::enumeration(
case ELF::EM_AARCH64:
#include "llvm/Support/ELFRelocs/AArch64.def"
break;
case ELF::EM_ARM:
#include "llvm/Support/ELFRelocs/ARM.def"
break;
default:
llvm_unreachable("Unsupported architecture");
}