re PR target/82015 (PowerPC should check if 2nd argument to __builtin_unpackv1ti and similar functions is 0 or 1)
2017-08-30 Michael Meissner <meissner@linux.vnet.ibm.com> PR target/82015 * gcc.target/powerpc/pr82015.c: Fix up error message. From-SVN: r251539
This commit is contained in:
parent
4c8fd8ac5b
commit
6da714c678
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-08-30 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
|
||||
PR target/82015
|
||||
* gcc.target/powerpc/pr82015.c: Fix up error message.
|
||||
|
||||
2017-08-30 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR inline-asm/82001
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
|
||||
unsigned long foo_11(vector __int128_t *p)
|
||||
{
|
||||
return __builtin_unpack_vector_int128(*p, 11); /* { dg-error "argument 2 must be 0 or 1" } */
|
||||
return __builtin_unpack_vector_int128(*p, 11); /* { dg-error "argument 2 must be a 1-bit unsigned literal" } */
|
||||
}
|
||||
|
||||
unsigned long foo_n(vector __int128_t *p, unsigned long n)
|
||||
{
|
||||
return __builtin_unpack_vector_int128(*p, n); /* { dg-error "argument 2 must be 0 or 1" } */
|
||||
return __builtin_unpack_vector_int128(*p, n); /* { dg-error "argument 2 must be a 1-bit unsigned literal" } */
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue