aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c
deleted file mode 100644
index 90bc99cbe..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/builtin-unreachable-4.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Check that this valid code doesn't ICE. */
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-void
-g (int a, int b, int c, int d)
-{
- if (d)
- {
- ((void)
- (!(a && b && c) ? __builtin_unreachable (), 0 : 0));
- }
- ((void)
- (!(a && b && c) ? __builtin_unreachable (), 0 : 0));
-}