[llvm] 48a6e51 - [llvm-exegesis] Fix typo in f2334c5919ec077e6a8deeaf43a5b5188baf0251
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 24 13:54:48 PST 2024
Author: Aiden Grossman
Date: 2024-12-24T21:54:30Z
New Revision: 48a6e51445d61101fa42ffbf9997e5d54a02fc18
URL: https://github.com/llvm/llvm-project/commit/48a6e51445d61101fa42ffbf9997e5d54a02fc18
DIFF: https://github.com/llvm/llvm-project/commit/48a6e51445d61101fa42ffbf9997e5d54a02fc18.diff
LOG: [llvm-exegesis] Fix typo in f2334c5919ec077e6a8deeaf43a5b5188baf0251
This should have been in the original commit, but I somehow forgot to
run git add && git commit --amend --no-edit between making the change in
my editor, saving the file, and pushing the commit.
Added:
Modified:
llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
Removed:
################################################################################
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
index a8226b810c2429..a7771b99e97b1a 100644
--- a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
+++ b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
@@ -423,7 +423,7 @@ class SubProcessFunctionExecutorImpl
assert(static_cast<int>(CurrentCPU) == CPUToUse &&
"Expected current CPU to equal the CPU requested by the user");
#else
- exit(ChildProcessExChildProcessExitCodeE::SetCPUAffinityFailed));
+ exit(ChildProcessExitCodeE::SetCPUAffinityFailed);
#endif // defined(__x86_64__) && defined(SYS_getcpu)
}
More information about the llvm-commits
mailing list