reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/ELF/Arch/MSP430.cpp
   66     checkIntUInt(loc, val, 8, type);
   67     *loc = val;
   73     checkIntUInt(loc, val, 16, type);
   74     write16le(loc, val);
   77     checkIntUInt(loc, val, 32, type);
   78     write32le(loc, val);
   82     checkInt(loc, offset, 10, type);
   83     write16le(loc, (read16le(loc) & 0xFC00) | (offset & 0x3FF));
   83     write16le(loc, (read16le(loc) & 0xFC00) | (offset & 0x3FF));
   87     error(getErrorLocation(loc) + "unrecognized relocation " + toString(type));