1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Remove dead return.

llvm-svn: 182898
This commit is contained in:
Rafael Espindola 2013-05-30 00:29:46 +00:00
parent bff1b48095
commit ecf5cbb5aa

View File

@ -343,7 +343,6 @@ struct Elf_Rel_Base<ELFType<TargetEndianness, MaxAlign, true>, false> {
// by a 32 bit big endian number.
return (t << 32) | ((t >> 8) & 0xff000000) | ((t >> 24) & 0x00ff0000) |
((t >> 40) & 0x0000ff00) | ((t >> 56) & 0x000000ff);
return r_info;
}
void setRInfo(uint64_t R) {
// FIXME: Add mips64el support.