[compiler-rt] 71ab6ea - [test] Remove fprintf argument after D144830
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 7 21:40:59 PST 2023
Author: Dave MacLachlan
Date: 2023-03-07T21:40:47-08:00
New Revision: 71ab6eab7234ed1204d0e7a09a6212e65476c6b8
URL: https://github.com/llvm/llvm-project/commit/71ab6eab7234ed1204d0e7a09a6212e65476c6b8
DIFF: https://github.com/llvm/llvm-project/commit/71ab6eab7234ed1204d0e7a09a6212e65476c6b8.diff
LOG: [test] Remove fprintf argument after D144830
Reviewed By: vitalybuka
Differential Revision: https://reviews.llvm.org/D145461
Added:
Modified:
compiler-rt/test/asan/TestCases/report_error_summary.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/asan/TestCases/report_error_summary.cpp b/compiler-rt/test/asan/TestCases/report_error_summary.cpp
index c462b6bbfc9de..6591cf14b209d 100644
--- a/compiler-rt/test/asan/TestCases/report_error_summary.cpp
+++ b/compiler-rt/test/asan/TestCases/report_error_summary.cpp
@@ -6,7 +6,7 @@
#include <stdio.h>
extern "C" void __sanitizer_report_error_summary(const char *summary) {
- fprintf(stderr, "test_report_error_summary\n", summary);
+ fprintf(stderr, "test_report_error_summary\n");
// CHECK: test_report_error_summary
fflush(stderr);
}
More information about the llvm-commits
mailing list