[Mips] Fix typo in the comment

llvm-svn: 234630
This commit is contained in:
Simon Atanasyan 2015-04-10 20:54:58 +00:00
parent 22a2d99e25
commit 2bafa8342c
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ static uint64_t reloc64(uint64_t S, int64_t A) { return S + A; }
static uint64_t relocSub(uint64_t S, int64_t A) { return S - A; }
/// \brief R_MIPS_PC32
/// local/external: word32 S + A i- P (truncate)
/// local/external: word32 S + A - P (truncate)
static uint32_t relocpc32(uint64_t P, uint64_t S, int64_t A) {
return S + A - P;
}