]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Add profile_update_atomic check to gcov-20.c [PR114614]
authorKewen Lin <linkw@linux.ibm.com>
Tue, 9 Apr 2024 02:02:17 +0000 (21:02 -0500)
committerKewen Lin <linkw@linux.ibm.com>
Tue, 9 Apr 2024 02:02:17 +0000 (21:02 -0500)
As PR114614 shows, the newly added test case gcov-20.c by
commit r14-9789-g08a52331803f66 failed on targets which do
not support atomic profile update, there would be a message
like:

  warning: target does not support atomic profile update,
           single mode is selected

Since the test case adopts -fprofile-update=atomic, it
requires effective target check profile_update_atomic, this
patch is to add the check accordingly.

PR testsuite/114614

gcc/testsuite/ChangeLog:

* gcc.misc-tests/gcov-20.c: Add effective target check
profile_update_atomic.

gcc/testsuite/gcc.misc-tests/gcov-20.c

index 215faffc9801f0fcf56f93f7097c11916536ae78..ca8c12aad2bc555a5c7a04331d488f8a0de023d6 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-options "-fcondition-coverage -ftest-coverage -fprofile-update=atomic" } */
 /* { dg-do run { target native } } */
+/* { dg-require-effective-target profile_update_atomic } */
 
 /* Some side effect to stop branches from being pruned */
 int x = 0;