aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/darwin-bool-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/darwin-bool-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/darwin-bool-1.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/gcc.dg/darwin-bool-1.c b/gcc/testsuite/gcc.dg/darwin-bool-1.c
deleted file mode 100644
index ef1e98b..0000000
--- a/gcc/testsuite/gcc.dg/darwin-bool-1.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Check that sizeof(bool) is 4 if we don't use special options. */
-/* Matt Austern <austern@apple.com> */
-/* { dg-do run { target powerpc*-*-darwin* } } */
-
-int dummy1[sizeof(_Bool) - 3];
-int dummy2[5 - sizeof(_Bool)];
-
-int main()
-{
- return sizeof(_Bool) == 4 ? 0 : 1;
-}