mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
Tweak to change in r270491 to deal with the lld-x86_64-darwin13 bot having a old xar.h header.
Reviewed the change with Chris Bieneman and Pete Cooper. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270502 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
39599bdfbf
commit
f0a99b9f68
@ -5873,12 +5873,16 @@ static void DumpBitcodeSection(MachOObjectFile *O, const char *sect,
|
||||
case XAR_CKSUM_MD5:
|
||||
outs() << "XAR_CKSUM_MD5\n";
|
||||
break;
|
||||
#ifdef XAR_CKSUM_SHA256
|
||||
case XAR_CKSUM_SHA256:
|
||||
outs() << "XAR_CKSUM_SHA256\n";
|
||||
break;
|
||||
#endif
|
||||
#ifdef XAR_CKSUM_SHA512
|
||||
case XAR_CKSUM_SHA512:
|
||||
outs() << "XAR_CKSUM_SHA512\n";
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
outs() << XarHeader.cksum_alg << "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user