forked from OSchip/llvm-project
[Orc] Oops - lambda capture changed in r258206 was correct.
Fully qualify reference to Finalized in the body of the lambda instead to work around GCC ICE. llvm-svn: 258208
This commit is contained in:
parent
2c49e2e664
commit
951f73a2de
|
@ -135,10 +135,10 @@ private:
|
|||
|
||||
JITSymbol::GetAddressFtor getSymbolMaterializer(std::string Name) override {
|
||||
return
|
||||
[this, Name, &Finalized]() {
|
||||
[this, Name]() {
|
||||
// The symbol may be materialized between the creation of this lambda
|
||||
// and its execution, so we need to double check.
|
||||
if (!Finalized)
|
||||
if (!this->Finalized)
|
||||
finalize();
|
||||
return getSymbol(Name, false).getAddress();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue