diff options
author | Xiong Hu Luo <luoxhu@gcc.gnu.org> | 2019-11-07 01:24:03 +0000 |
---|---|---|
committer | Xiong Hu Luo <luoxhu@gcc.gnu.org> | 2019-11-07 01:24:03 +0000 |
commit | ce6c0a20b5875c18a8416d60950febea76a4b9d3 (patch) | |
tree | 4f521feb79bc6bf5ce337e43b3f5446003e67c05 | |
parent | 471c53308a04d9f65a8e13b458fb56366318dc04 (diff) | |
download | gcc-ce6c0a20b5875c18a8416d60950febea76a4b9d3.zip gcc-ce6c0a20b5875c18a8416d60950febea76a4b9d3.tar.gz gcc-ce6c0a20b5875c18a8416d60950febea76a4b9d3.tar.bz2 |
Fix copy-paste typo syntax error by r277872
gcc/testsuite/ChangeLog:
2019-11-07 Xiong Hu Luo <luoxhu@linux.ibm.com>
* gcc.target/powerpc/pr72804.c: Move inline options from
dg-require-effective-target to dg-options.
From-SVN: r277904
-rw-r--r-- | gcc/testsuite/gcc.target/powerpc/pr72804.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.target/powerpc/pr72804.c b/gcc/testsuite/gcc.target/powerpc/pr72804.c index 0fc3df1..10e37ca 100644 --- a/gcc/testsuite/gcc.target/powerpc/pr72804.c +++ b/gcc/testsuite/gcc.target/powerpc/pr72804.c @@ -1,7 +1,7 @@ /* { dg-do compile { target { lp64 } } } */ /* { dg-skip-if "" { powerpc*-*-darwin* } } */ -/* { dg-require-effective-target powerpc_vsx_ok -fno-inline-functions --param max-inline-insns-single-O2=200 } */ -/* { dg-options "-O2 -mvsx" } */ +/* { dg-require-effective-target powerpc_vsx_ok } */ +/* { dg-options "-O2 -mvsx -fno-inline-functions --param max-inline-insns-single-O2=200" } */ __int128_t foo (__int128_t *src) |