freebsd-dev/contrib/llvm/patches/patch-r262261-llvm-r198739-sparc.diff
Dimitry Andric a426b286c8 Add the clang patch for r265477. While here, add a description to the
patch for r263619, and unify all the URLs to point to svnweb.
2014-05-24 22:27:31 +00:00

20 lines
769 B
Diff

Pull in r198739 from upstream llvm trunk (by Venkatraman Govindaraju):
[Sparc] Correct the mask for fixup_sparc_br19.
Introduced here: http://svnweb.freebsd.org/changeset/base/262261
Index: lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
===================================================================
--- lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
+++ lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
@@ -31,7 +31,7 @@ static unsigned adjustFixupValue(unsigned Kind, ui
case Sparc::fixup_sparc_br22:
return (Value >> 2) & 0x3fffff;
case Sparc::fixup_sparc_br19:
- return (Value >> 2) & 0x1ffff;
+ return (Value >> 2) & 0x7ffff;
case Sparc::fixup_sparc_hi22:
return (Value >> 10) & 0x3fffff;
case Sparc::fixup_sparc_lo10: