aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/cpp/charconst-2.c
blob: 59fa500e35f897b59e8dadbd57ece727719288ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copyright (C) 2001 Free Software Foundation, Inc.  */

/* { dg-do compile } */
/* { dg-options "-fsigned-char" } */

/* Crosscompiling from i686-linux (32-bit) to x86_64-linux (64-bit)
   gave extra warnings on the two assignments:
   warning: large integer implicitly truncated to unsigned type
   warning: overflow in implicit constant conversion
   This test has been added as a regression test after fixing the bug
   by Andreas Jaeger, 23 Nov 2001.  */
int
main (void)
{
  signed char c = '\xff';
  unsigned char d = '\xff';
  
  return 0;
}