diff options
author | Fangrui Song <maskray@google.com> | 2018-10-22 17:52:31 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-10-22 17:52:31 +0000 |
commit | a342834b24b66be69b1101423a2e161b0c02820e (patch) | |
tree | 167271b7c439e5a34d6a068ae2d039c493347ce6 /llvm | |
parent | 5dff767c25041c1dfbba42520ce59e8f837b19ad (diff) | |
download | bcm5719-llvm-a342834b24b66be69b1101423a2e161b0c02820e.tar.gz bcm5719-llvm-a342834b24b66be69b1101423a2e161b0c02820e.zip |
[llvm-exegesis] Fix name lookup ambiguity in MSVC after 344922
llvm-svn: 344927
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp index 0d372363927..3f13c4638ec 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp @@ -75,7 +75,7 @@ private: llvm::CrashRecoveryContext::Enable(); const bool Crashed = !CRC.RunSafely([this, &Counter, ScratchPtr]() { Counter.start(); - Function(ScratchPtr); + this->Function(ScratchPtr); Counter.stop(); }); llvm::CrashRecoveryContext::Disable(); |