diff options
author | Lang Hames <lhames@gmail.com> | 2018-01-21 02:24:45 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-01-21 02:24:45 +0000 |
commit | 0d7d4426998f69c8fba44ffe3b905ecf6062141c (patch) | |
tree | b47cb1fd0ec9e57848914f598bd88c037a9b0a6f | |
parent | f57714c3c776b250fd9e96491070ceee3f55735c (diff) | |
download | bcm5719-llvm-0d7d4426998f69c8fba44ffe3b905ecf6062141c.tar.gz bcm5719-llvm-0d7d4426998f69c8fba44ffe3b905ecf6062141c.zip |
[ORC] Cleanup. NFC.
llvm-svn: 323057
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/Core.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/Core.cpp b/llvm/lib/ExecutionEngine/Orc/Core.cpp index 2af24a09ae3..d53fc448f8a 100644 --- a/llvm/lib/ExecutionEngine/Orc/Core.cpp +++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp @@ -292,8 +292,7 @@ VSO::LookupResult VSO::lookup(AsynchronousSymbolQuery &Query, SourceWorkMap MaterializationWork; for (SymbolNameSet::iterator I = Names.begin(), E = Names.end(); I != E;) { - auto Tmp = I; - ++I; + auto Tmp = I++; auto SymI = Symbols.find(*Tmp); // If the symbol isn't in this dylib then just continue. |