diff options
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp index 9116b5c..a7771b9 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp @@ -422,8 +422,9 @@ private: "Expected getcpu call to succeed."); assert(static_cast<int>(CurrentCPU) == CPUToUse && "Expected current CPU to equal the CPU requested by the user"); -#endif // defined(__x86_64__) && defined(SYS_getcpu) +#else exit(ChildProcessExitCodeE::SetCPUAffinityFailed); +#endif // defined(__x86_64__) && defined(SYS_getcpu) } Error createSubProcessAndRunBenchmark( |