[Mips] Remove non-ASCII symbol from the comment.

llvm-svn: 202290
This commit is contained in:
Simon Atanasyan 2014-02-26 19:23:52 +00:00
parent 46ff3ce2bd
commit 930ea1892f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ void reloc26loc(uint8_t *location, uint64_t P, uint64_t S, int32_t A) {
}
/// \brief LLD_R_MIPS_GLOBAL_26
/// external: (signextend(A) + S) >> 2
/// external: (sign-extend(A) + S) >> 2
void reloc26ext(uint8_t *location, uint64_t S, int32_t A) {
uint32_t result = signExtend<28>(A << 2) + S;
applyReloc(location, result >> 2, 0x03ffffff);