diff options
author | Martin Sebor <msebor@redhat.com> | 2020-07-23 14:08:22 -0600 |
---|---|---|
committer | Martin Sebor <msebor@redhat.com> | 2020-07-23 14:10:14 -0600 |
commit | 8598657c607500512075f6c4ee3b10460c94903d (patch) | |
tree | b01a9e3438341f01e81526907eb280c0aa5f4863 | |
parent | 25bce75c77ec5617c78173d837d3b664c0f20968 (diff) | |
download | gcc-8598657c607500512075f6c4ee3b10460c94903d.zip gcc-8598657c607500512075f6c4ee3b10460c94903d.tar.gz gcc-8598657c607500512075f6c4ee3b10460c94903d.tar.bz2 |
Restrict test to LP64.
gcc/testsuite/ChangeLog:
PR testsuite/95886
* gcc.target/i386/memcpy-pr95886.c: Restrict test to LP64.
-rw-r--r-- | gcc/testsuite/gcc.target/i386/memcpy-pr95886.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/memcpy-pr95886.c b/gcc/testsuite/gcc.target/i386/memcpy-pr95886.c index c0a04d2..ddfdfd2 100644 --- a/gcc/testsuite/gcc.target/i386/memcpy-pr95886.c +++ b/gcc/testsuite/gcc.target/i386/memcpy-pr95886.c @@ -1,6 +1,7 @@ /* PR middle-end/95886 - suboptimal memcpy with embedded zero bytes { dg-do compile } - { dg-options "-O2 -Wall -fdump-rtl-expand" } */ + { dg-options "-O2 -Wall -fdump-rtl-expand" } + { dg-require-effective-target lp64 } */ const char a1234567890[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; |