diff options
| author | Jason W Kim <jason.w.kim.2009@gmail.com> | 2011-08-04 00:38:45 +0000 |
|---|---|---|
| committer | Jason W Kim <jason.w.kim.2009@gmail.com> | 2011-08-04 00:38:45 +0000 |
| commit | e651983e71a0fbe624a1441dfc8b747ca1a038f1 (patch) | |
| tree | 647cbd2a0ef790e9e5cbc27472ba199e82ccfdfb /lib/Target/X86/MCTargetDesc | |
| parent | 456a925c6177d65ed63d6518cd7fdad3e6502ae6 (diff) | |
| download | external_llvm-e651983e71a0fbe624a1441dfc8b747ca1a038f1.zip external_llvm-e651983e71a0fbe624a1441dfc8b747ca1a038f1.tar.gz external_llvm-e651983e71a0fbe624a1441dfc8b747ca1a038f1.tar.bz2 | |
Fix http://llvm.org/bugs/show_bug.cgi?id=10568
Move the reloc size assert into AsmBackend - where it is more apropos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136855 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/MCTargetDesc')
| -rw-r--r-- | lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp index c90e41c..e7713f3 100644 --- a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp +++ b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp @@ -93,6 +93,23 @@ public: assert(Fixup.getOffset() + Size <= DataSize && "Invalid fixup offset!"); + + // Check that the upper bits are either all 0 or all 1's + switch (Size) { + case 1: + assert((isInt<8>(Value) || isUInt<8>(Value)) && + "Value does not fit in a 1Byte Reloc"); + break; + case 2: + assert((isInt<16>(Value) || isUInt<16>(Value)) && + "Value does not fit in a 2Byte Reloc"); + break; + case 4: + assert((isInt<32>(Value) || isUInt<32>(Value)) && + "Value does not fit in a 4Byte Reloc"); + break; + } + for (unsigned i = 0; i != Size; ++i) Data[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8)); } |
