Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/intmax_t-1.c @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 /* { dg-do compile } */ |
2 /* { dg-options "-Wall" } */ | |
3 /* { dg-error "" "" { target { { *arm*-*-*elf* xtensa*-*-elf* } || vxworks_kernel } } 0 } */ | |
4 | |
5 /* Compile with -Wall to get a warning if built-in and system intmax_t don't | |
6 match. */ | |
7 | |
8 #include <inttypes.h> | |
9 | |
10 __INTMAX_TYPE__ __im_t__; | |
11 __UINTMAX_TYPE__ __uim_t__; | |
12 intmax_t *im_t_p; | |
13 uintmax_t *uim_t_p; | |
14 | |
15 void | |
16 imt (void) | |
17 { | |
18 im_t_p = &__im_t__; | |
19 } | |
20 | |
21 void | |
22 uimt (void) | |
23 { | |
24 uim_t_p = &__uim_t__; | |
25 } |