diff options
author | Vladimir N. Makarov <vmakarov@redhat.com> | 2025-01-10 10:36:24 -0500 |
---|---|---|
committer | Vladimir N. Makarov <vmakarov@redhat.com> | 2025-01-10 10:36:24 -0500 |
commit | 94d8de53388793f4d5fc0d0aa00fef32ca4aa870 (patch) | |
tree | 31d7a91d1bb5cc26426abf9619497189997c5d63 | |
parent | 288ac095b4df1a47a4cf9ba2efdc56a568a6e951 (diff) | |
download | gcc-94d8de53388793f4d5fc0d0aa00fef32ca4aa870.zip gcc-94d8de53388793f4d5fc0d0aa00fef32ca4aa870.tar.gz gcc-94d8de53388793f4d5fc0d0aa00fef32ca4aa870.tar.bz2 |
[PR118017][LRA]: Fix test for i686
My previous patch for PR118017 contains a test which fails on i686. The patch fixes this.
gcc/testsuite/ChangeLog:
PR target/118017
* gcc.target/i386/pr118017.c: Check target int128.
-rw-r--r-- | gcc/testsuite/gcc.target/i386/pr118017.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/pr118017.c b/gcc/testsuite/gcc.target/i386/pr118017.c index c82d71e..28797a0 100644 --- a/gcc/testsuite/gcc.target/i386/pr118017.c +++ b/gcc/testsuite/gcc.target/i386/pr118017.c @@ -1,5 +1,5 @@ /* PR target/118017 */ -/* { dg-do compile } */ +/* { dg-do compile { target int128 } } */ /* { dg-options "-Og -frounding-math -mno-80387 -mno-mmx -Wno-psabi" } */ typedef __attribute__((__vector_size__ (64))) _Float128 F; |