mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[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
44cd309151
commit
1805d7e728
@ -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…
x
Reference in New Issue
Block a user