Skip to content
Snippets Groups Projects
Commit f691e2c2 authored by Venkatraman Govindaraju's avatar Venkatraman Govindaraju
Browse files

[Sparc] Correct the mask for fixup_sparc_br19.

llvm-svn: 198739
parent b3b7c389
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment