diff options
author | Carl Love <cel@us.ibm.com> | 2018-01-18 20:38:41 +0000 |
---|---|---|
committer | Carl Love <carll@gcc.gnu.org> | 2018-01-18 20:38:41 +0000 |
commit | 3480ed3a8f6cff170160a44f75f0b79152c8cb05 (patch) | |
tree | db64bd243e865d4555c043d1aa5cd33098e2de1f | |
parent | 6aee2fd0648140a7308123c1368e772cf58738ff (diff) | |
download | gcc-3480ed3a8f6cff170160a44f75f0b79152c8cb05.zip gcc-3480ed3a8f6cff170160a44f75f0b79152c8cb05.tar.gz gcc-3480ed3a8f6cff170160a44f75f0b79152c8cb05.tar.bz2 |
builtins-6.h (foo): Add missing closing bracket to the function.
gcc/testsuite/ChangeLog:
2018-01-18 Carl Love <cel@us.ibm.com>
* gcc.target/powerpc/builtins-6.h (foo): Add missing closing bracket
to the function.
From-SVN: r256864
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/powerpc/vsx-vector-6.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3110c48..fad4ddc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2018-01-18 Carl Love <cel@us.ibm.com> + * gcc.target/powerpc/builtins-6.h (foo): Add missing closing bracket + to the function. + 2018-01-18 Paolo Carlini <paolo.carlini@oracle.com> PR c++/81013 diff --git a/gcc/testsuite/gcc.target/powerpc/vsx-vector-6.h b/gcc/testsuite/gcc.target/powerpc/vsx-vector-6.h index a3e89cf..422f8a1 100644 --- a/gcc/testsuite/gcc.target/powerpc/vsx-vector-6.h +++ b/gcc/testsuite/gcc.target/powerpc/vsx-vector-6.h @@ -135,7 +135,7 @@ void foo (vector double *out, vector double *in, vector long *p_l, vector bool l *in++ = vec_andc (inbl0, in1); *in++ = vec_andc (in0, inbl1); - +} int main() { |