[llvm] r233048 - [Orc] Whitespace fix. NFC.
Lang Hames
lhames at gmail.com
Mon Mar 23 21:07:28 PDT 2015
Author: lhames
Date: Mon Mar 23 23:07:28 2015
New Revision: 233048
URL: http://llvm.org/viewvc/llvm-project?rev=233048&view=rev
Log:
[Orc] Whitespace fix. NFC.
Modified:
llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h?rev=233048&r1=233047&r2=233048&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h Mon Mar 23 23:07:28 2015
@@ -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;
More information about the llvm-commits
mailing list