diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-08-20 20:15:12 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-08-20 20:15:12 -0600 |
commit | 8ee53a2191dc676b3cef7f59873ca82f7052b7d0 (patch) | |
tree | ba105975e695233537d2d8197d0fcc05b56bde4f | |
parent | 767af602bca0322fcf5f39070674ebe357af4bb9 (diff) | |
download | gcc-8ee53a2191dc676b3cef7f59873ca82f7052b7d0.zip gcc-8ee53a2191dc676b3cef7f59873ca82f7052b7d0.tar.gz gcc-8ee53a2191dc676b3cef7f59873ca82f7052b7d0.tar.bz2 |
980526-2.c: Disable for targets with 16bit ints.
* gcc.c-torture/980526-2.c: Disable for targets with 16bit ints.
From-SVN: r21894
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/980526-2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/980526-2.c b/gcc/testsuite/gcc.c-torture/execute/980526-2.c index 1823a00..2547147 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); } |