diff options
| author | Lang Hames <lhames@gmail.com> | 2015-03-24 04:07:28 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2015-03-24 04:07:28 +0000 |
| commit | 96a1004db289d0572d51a762953b302947c3fa13 (patch) | |
| tree | 94e8b801411a5e895e73b8c3ac149935e9fb8ad6 | |
| parent | 1eea5a97b425c54ae41c7161ca4753225d90cfb7 (diff) | |
| download | bcm5719-llvm-96a1004db289d0572d51a762953b302947c3fa13.tar.gz bcm5719-llvm-96a1004db289d0572d51a762953b302947c3fa13.zip | |
[Orc] Whitespace fix. NFC.
llvm-svn: 233048
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h b/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h index fe7eafce43d..ac5fccfcd4d 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h @@ -48,10 +48,10 @@ private: if (auto GV = searchGVs(Name, ExportedSymbolsOnly)) { // Create a std::string version of Name to capture here - the argument // (a StringRef) may go away before the lambda is executed. - // FIXME: Use capture-init when we move to C++14. + // FIXME: Use capture-init when we move to C++14. std::string PName = Name; JITSymbolFlags Flags = JITSymbolBase::flagsFromGlobalValue(*GV); - auto GetAddress = + auto GetAddress = [this, ExportedSymbolsOnly, PName, &B]() -> TargetAddress { if (this->EmitState == Emitting) return 0; |

