From: Jeff Law Date: Fri, 21 Aug 1998 02:15:12 +0000 (-0600) Subject: 980526-2.c: Disable for targets with 16bit ints. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8ee53a2191dc676b3cef7f59873ca82f7052b7d0;p=gcc.git 980526-2.c: Disable for targets with 16bit ints. * gcc.c-torture/980526-2.c: Disable for targets with 16bit ints. From-SVN: r21894 --- diff --git a/gcc/testsuite/gcc.c-torture/execute/980526-2.c b/gcc/testsuite/gcc.c-torture/execute/980526-2.c index 1823a00a0a4..2547147176d 100644 --- a/gcc/testsuite/gcc.c-torture/execute/980526-2.c +++ b/gcc/testsuite/gcc.c-torture/execute/980526-2.c @@ -50,5 +50,8 @@ int sys_mknod(const char * filename, int mode, dev_t dev) int main(void) { + if (sizeof (int) < 4) + exit (0); + return sys_mknod("test",1,0x12345678); }