view gcc/testsuite/gcc.dg/c90-const-expr-8.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test for constant expressions: overflow and constant expressions
   with -fwrapv: overflows still count as such for the purposes of
   constant expressions even when they have defined values at
   runtime.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1990 -pedantic-errors -fwrapv" } */

#include <limits.h>

enum e {
  E0 = 0 * (INT_MAX + 1), /* { dg-warning "21:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E1 = 0 * (INT_MIN / -1), /* { dg-warning "21:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E2 = 0 * (INT_MAX * INT_MAX), /* { dg-warning "21:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E3 = 0 * (INT_MIN - 1), /* { dg-warning "21:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E4 = 0 * (unsigned)(INT_MIN - 1), /* { dg-warning "31:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E5 = 0 * -INT_MIN, /* { dg-warning "12:integer overflow in expression" } */
  /* { dg-error "3:overflow in constant expression" "constant" { target *-*-* } .-1 } */
  E6 = 0 * !-INT_MIN, /* { dg-warning "13:integer overflow in expression" } */
  /* { dg-error "8:not an integer constant" "constant" { target *-*-* } .-1 } */
  E7 = INT_MIN % -1 /* { dg-warning "16:integer overflow in expression" } */
  /* { dg-error "1:overflow in constant expression" "constant" { target *-*-* } .+1 } */
};