diff options
author | Luo Xiong Hu <luoxhu@linux.ibm.com> | 2019-12-03 01:46:16 +0000 |
---|---|---|
committer | Xiong Hu Luo <luoxhu@gcc.gnu.org> | 2019-12-03 01:46:16 +0000 |
commit | 19d9824ba09dc798a622dd055825569423f9f020 (patch) | |
tree | 5731e1d1b468ae23af188b278e2cf3113c1c2a38 /gcc | |
parent | 85d1195708cf977bd90afeb9ad51aba085993fb7 (diff) | |
download | gcc-19d9824ba09dc798a622dd055825569423f9f020.zip gcc-19d9824ba09dc798a622dd055825569423f9f020.tar.gz gcc-19d9824ba09dc798a622dd055825569423f9f020.tar.bz2 |
Fix missing space of r278890
gcc/testsuite/ChangeLog:
2019-12-03 Luo Xiong Hu <luoxhu@linux.ibm.com>
* gcc.target/powerpc/pr72804.c: Fix missing space.
From-SVN: r278918
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/powerpc/pr72804.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 915c062..520581d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2019-12-03 Luo Xiong Hu <luoxhu@linux.ibm.com> + + * gcc.target/powerpc/pr72804.c: Fix missing space. + 2019-12-03 Joseph Myers <joseph@codesourcery.com> PR c/88704 diff --git a/gcc/testsuite/gcc.target/powerpc/pr72804.c b/gcc/testsuite/gcc.target/powerpc/pr72804.c index d424bcc..38dff54 100644 --- a/gcc/testsuite/gcc.target/powerpc/pr72804.c +++ b/gcc/testsuite/gcc.target/powerpc/pr72804.c @@ -1,6 +1,6 @@ /* { dg-do compile { target { lp64 } } } */ /* { dg-require-effective-target powerpc_vsx_ok } */ -/* { dg-options "-O2 -mvsx"} */ +/* { dg-options "-O2 -mvsx" } */ __int128_t foo (__int128_t *src) @@ -11,4 +11,4 @@ foo (__int128_t *src) /* { dg-final { scan-assembler-times {\mld\M} 2 } } */ /* { dg-final { scan-assembler-times {\mnot\M} 2 } } */ -/* { dg-final { scan-assembler-not {\mlxvd2x\M} } }*/ +/* { dg-final { scan-assembler-not {\mlxvd2x\M} } } */ |