Commit c52571df by Iain Sandoe

re PR target/49614 (FAIL: gcc.dg/vmx/gcc-bug-i.c -O0 (test for excess errors))


gcc/testsuite:

	PR target/49614
	* gcc.dg/vmx/gcc-bug-i.c (inline_me): Declare 'inline'.

From-SVN: r178730
parent 107defbe
2011-09-09 Iain Sandoe <iains@gcc.gnu.org>
PR target/49614
* gcc.dg/vmx/gcc-bug-i.c (inline_me): Declare 'inline'.
2011-09-09 Richard Guenther <rguenther@suse.de> 2011-09-09 Richard Guenther <rguenther@suse.de>
PR tree-optimization/50328 PR tree-optimization/50328
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#define DO_INLINE __attribute__ ((always_inline)) #define DO_INLINE __attribute__ ((always_inline))
#define DONT_INLINE __attribute__ ((noinline)) #define DONT_INLINE __attribute__ ((noinline))
static DO_INLINE int inline_me(vector signed short data) static inline DO_INLINE int inline_me(vector signed short data)
{ {
union {vector signed short v; signed short s[8];} u; union {vector signed short v; signed short s[8];} u;
u.v = data; u.v = data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment