Commit 84cd52a9 by Roger Sayle Committed by Roger Sayle

uninit-C.c: Only test TImode on 64-bit platforms.


	* gcc.dg/uninit-C.c: Only test TImode on 64-bit platforms.

Co-Authored-By: James E Wilson <wilson@tuliptree.org>

From-SVN: r67540
parent 295e823c
2003-06-06 Roger Sayle <roger@eyesopen.com>
Jim Wilson <wilson@tuliptree.org>
* gcc.dg/uninit-C.c: Only test TImode on 64-bit platforms.
2003-06-06 Jakub Jelinek <jakub@redhat.com> 2003-06-06 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/builtins/string-4.c (main_test): Allow some * gcc.c-torture/execute/builtins/string-4.c (main_test): Allow some
......
...@@ -2,7 +2,13 @@ ...@@ -2,7 +2,13 @@
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */ /* { dg-options "-O -Wuninitialized" } */
/* Not all platforms support TImode integers. */
#if defined(__LP64__) || defined(__sparc__)
typedef int TItype __attribute__ ((mode (TI))); typedef int TItype __attribute__ ((mode (TI)));
#else
typedef long TItype;
#endif
TItype TItype
__subvdi3 (TItype a, TItype b) __subvdi3 (TItype a, TItype b)
......
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