OSDN Git Service

Do not FAIL in miscompiled runtime tests.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wfatal.c
1 /* { dg-do compile } */
2 /* { dg-options "-Woverflow -Werror=div-by-zero -Wfatal-errors" } */
3 #include <limits.h>
4
5 int i = INT_MAX + 1; /* { dg-warning "integer overflow in expression" } */
6 int k = 1 / 0; /* { dg-error "division by zero" } */
7 int j = INT_MIN - 1;
8 /* { dg-message "terminated due to -Wfatal-errors" "" { target *-*-* } 0 } */
9
10
11