[Orc] Whitespace fix. NFC.

llvm-svn: 233048
This commit is contained in:
Lang Hames 2015-03-24 04:07:28 +00:00
parent 1eea5a97b4
commit 96a1004db2
1 changed files with 2 additions and 2 deletions

View File

@ -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;