[gcc(refs/users/guojiufu/heads/guojiufu-branch)] Fix 'sizeof' usage in 'libgomp.oacc-c-c++-common/deep-copy-{7, 8}.c'

Jiu Fu Guo guojiufu@gcc.gnu.org
Wed Jun 10 03:35:39 GMT 2020


https://gcc.gnu.org/g:db7179ec74dda8c92db18399e5041a96ece8d56d

commit db7179ec74dda8c92db18399e5041a96ece8d56d
Author: Thomas Schwinge <thomas@codesourcery.com>
Date:   Tue May 19 22:35:15 2020 +0200

    Fix 'sizeof' usage in 'libgomp.oacc-c-c++-common/deep-copy-{7,8}.c'
    
            libgomp/
            * testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c: Fix 'sizeof'
            usage.
            * testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c: Likewise.

Diff:
---
 libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c | 2 +-
 libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c b/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c
index a59047af520..13e5ca2e056 100644
--- a/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c
+++ b/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-7.c
@@ -38,7 +38,7 @@ main ()
 	assert (v.b[i] == v.a + i);
 
       assert (!acc_is_present (&v, sizeof (v)));
-      assert (!acc_is_present (v.b, sizeof (int *) * n));
+      assert (!acc_is_present (v.b, sizeof (int) * n));
     }
 
   return 0;
diff --git a/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c b/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c
index 0ca5990b377..1b4cf2fb684 100644
--- a/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c
+++ b/libgomp/testsuite/libgomp.oacc-c-c++-common/deep-copy-8.c
@@ -41,9 +41,9 @@ main ()
 	assert (v.b[i] == v.a + i);
 
       assert (acc_is_present (&v, sizeof (v)));
-      assert (!acc_is_present (v.b, sizeof (int *) * n));
-      assert (!acc_is_present (v.c, sizeof (int *) * n));
-      assert (!acc_is_present (v.d, sizeof (int *) * n));
+      assert (!acc_is_present (v.b, sizeof (int) * n));
+      assert (!acc_is_present (v.c, sizeof (int) * n));
+      assert (!acc_is_present (v.d, sizeof (int) * n));
     }
 
 #pragma acc exit data copyout(v)


More information about the Gcc-cvs mailing list