Skip to content

Commit

Permalink
[Orc] More qualifications of lambda-captured member variables to fix …
Browse files Browse the repository at this point in the history
…GCC ICEs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258286 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lhames committed Jan 20, 2016
1 parent 5ee31d7 commit 61cac3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,12 @@ class ObjectLinkingLayer : public ObjectLinkingLayerBase {

LOSHandleLoad();

NotifyLoaded(H, Objs, LoadedObjInfos);
this->NotifyLoaded(H, Objs, LoadedObjInfos);

RTDyld.finalizeWithMemoryManagerLocking();

if (NotifyFinalized)
NotifyFinalized(H);
if (this->NotifyFinalized)
this->NotifyFinalized(H);
};

auto LOS =
Expand Down

0 comments on commit 61cac3c

Please sign in to comment.