mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[ORC] More cleanup, partially aimed at working around GCC ICE.
llvm-svn: 257501
This commit is contained in:
parent
9e7c71991c
commit
4bc8070510
@ -726,14 +726,10 @@ private:
|
||||
if (ExistingError)
|
||||
return ExistingError;
|
||||
|
||||
if (auto EC = call<ReserveMem>(Channel, Id, Size, Align))
|
||||
if (std::error_code EC = call<ReserveMem>(Channel, Id, Size, Align))
|
||||
return EC;
|
||||
|
||||
if (std::error_code EC =
|
||||
expect<ReserveMemResponse>(Channel, readArgs(RemoteAddr)))
|
||||
return EC;
|
||||
|
||||
return std::error_code();
|
||||
return expect<ReserveMemResponse>(Channel, readArgs(RemoteAddr));
|
||||
}
|
||||
|
||||
std::error_code setProtections(ResourceIdMgr::ResourceId Id,
|
||||
|
Loading…
Reference in New Issue
Block a user