[llvm-branch-commits] [compiler-rt] release/20.x: [compiler-rt][Darwin][x86] Fix instrprof-darwin-exports test (#131425) (PR #132506)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Mar 21 20:27:16 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-pgo
Author: None (llvmbot)
<details>
<summary>Changes</summary>
Backport 94426df66a8d7c2321f9e197e5ef9636b0d5ce70
Requested by: @<!-- -->j-hui
---
Full diff: https://github.com/llvm/llvm-project/pull/132506.diff
1 Files Affected:
- (modified) compiler-rt/test/profile/instrprof-darwin-exports.c (+3-3)
``````````diff
diff --git a/compiler-rt/test/profile/instrprof-darwin-exports.c b/compiler-rt/test/profile/instrprof-darwin-exports.c
index 079d5d28ed24d..1a2ac8c813272 100644
--- a/compiler-rt/test/profile/instrprof-darwin-exports.c
+++ b/compiler-rt/test/profile/instrprof-darwin-exports.c
@@ -7,13 +7,13 @@
// just "_main" produces no warnings or errors.
//
// RUN: echo "_main" > %t.exports
-// RUN: %clang_pgogen -Werror -Wl,-exported_symbols_list,%t.exports -o %t %s 2>&1 | tee %t.log
-// RUN: %clang_profgen -Werror -fcoverage-mapping -Wl,-exported_symbols_list,%t.exports -o %t %s 2>&1 | tee -a %t.log
+// RUN: %clang_pgogen -Werror -Wl,-exported_symbols_list,%t.exports -Wl,-w -o %t %s 2>&1 | tee %t.log
+// RUN: %clang_profgen -Werror -fcoverage-mapping -Wl,-exported_symbols_list,%t.exports -Wl,-w -o %t %s 2>&1 | tee -a %t.log
// RUN: cat %t.log | count 0
// 2) Ditto (1), but for GCOV.
//
-// RUN: %clang -Werror -Wl,-exported_symbols_list,%t.exports --coverage -o %t.gcov %s | tee -a %t.gcov.log
+// RUN: %clang -Werror -Wl,-exported_symbols_list,%t.exports -Wl,-w --coverage -o %t.gcov %s | tee -a %t.gcov.log
// RUN: cat %t.gcov.log | count 0
// 3) The default set of weak external symbols should match the set of symbols
``````````
</details>
https://github.com/llvm/llvm-project/pull/132506
More information about the llvm-branch-commits
mailing list