mirror of git://gcc.gnu.org/git/gcc.git
re PR rtl-optimization/71984 (wrong code with -O -mavx512cd)
2016-08-04 Richard Biener <rguenther@suse.de> PR middle-end/71984 * gcc.dg/torture/pr71984.c: Guard correctness check for little-endian. From-SVN: r239114
This commit is contained in:
parent
b29fcf3b64
commit
fb46286e8d
|
|
@ -1,3 +1,9 @@
|
||||||
|
2016-08-04 Richard Biener <rguenther@suse.de>
|
||||||
|
|
||||||
|
PR middle-end/71984
|
||||||
|
* gcc.dg/torture/pr71984.c: Guard correctness check for
|
||||||
|
little-endian.
|
||||||
|
|
||||||
2016-08-03 Andrew Pinski <apinski@cavium.com>
|
2016-08-03 Andrew Pinski <apinski@cavium.com>
|
||||||
|
|
||||||
* gcc.c-torture/compile/20160802-1.c: New testcase.
|
* gcc.c-torture/compile/20160802-1.c: New testcase.
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,9 @@ int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
u8 x = foo((v64u64){0x0706050403020100UL});
|
u8 x = foo((v64u64){0x0706050403020100UL});
|
||||||
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||||
if (x != 5)
|
if (x != 5)
|
||||||
__builtin_abort ();
|
__builtin_abort ();
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue