blob: c5d5f445fc98bf7ec82e491778b1d895a1b60f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
|
/* $NetBSD: msg_247_ilp32_ldbl64.c,v 1.2 2023/07/05 11:42:14 rillig Exp $ */
# 3 "msg_247_ilp32.c"
// Test for message: pointer cast from '%s' to '%s' may be troublesome [247]
// In non-portable mode, lint warns based on the actual type sizes.
//
// See also:
// msg_247_lp64_ldbl128.c
// msg_247_portable.c
/* lint1-only-if: ilp32 ldbl64 */
/* lint1-extra-flags: -c -X 351 */
typedef double double_array[5];
typedef struct {
char member;
} char_struct;
typedef struct {
double member;
} double_struct;
typedef union {
char member;
} char_union;
typedef union {
double member;
} double_union;
typedef enum {
CONSTANT
} int_enum;
typedef void (*function_pointer)(void);
static _Bool *bool_ptr;
static char *char_ptr;
static signed char *schar_ptr;
static unsigned char *uchar_ptr;
static short *short_ptr;
static unsigned short *ushort_ptr;
static int *int_ptr;
static unsigned int *uint_ptr;
static long *long_ptr;
static unsigned long *ulong_ptr;
static long long *llong_ptr;
static unsigned long long *ullong_ptr;
// No int128_t, as that is only supported on LP64 platforms.
static float *float_ptr;
static double *double_ptr;
static long double *ldouble_ptr;
static float _Complex *fcomplex_ptr;
static double _Complex *dcomplex_ptr;
static long double _Complex *lcomplex_ptr;
static void *void_ptr;
static char_struct *char_struct_ptr;
static double_struct *double_struct_ptr;
static char_union *char_union_ptr;
static double_union *double_union_ptr;
static int_enum *enum_ptr;
static double_array *double_array_ptr;
static function_pointer func_ptr;
void
all_casts(void)
{
bool_ptr = (typeof(bool_ptr))bool_ptr;
bool_ptr = (typeof(bool_ptr))char_ptr;
bool_ptr = (typeof(bool_ptr))schar_ptr;
bool_ptr = (typeof(bool_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))lcomplex_ptr;
bool_ptr = (typeof(bool_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to _Bool' may be troublesome [247] */
bool_ptr = (typeof(bool_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to _Bool' is questionable [229] */
bool_ptr = (typeof(bool_ptr))func_ptr;
char_ptr = (typeof(char_ptr))bool_ptr;
char_ptr = (typeof(char_ptr))char_ptr;
char_ptr = (typeof(char_ptr))schar_ptr;
char_ptr = (typeof(char_ptr))uchar_ptr;
char_ptr = (typeof(char_ptr))short_ptr;
char_ptr = (typeof(char_ptr))ushort_ptr;
char_ptr = (typeof(char_ptr))int_ptr;
char_ptr = (typeof(char_ptr))uint_ptr;
char_ptr = (typeof(char_ptr))long_ptr;
char_ptr = (typeof(char_ptr))ulong_ptr;
char_ptr = (typeof(char_ptr))llong_ptr;
char_ptr = (typeof(char_ptr))ullong_ptr;
char_ptr = (typeof(char_ptr))float_ptr;
char_ptr = (typeof(char_ptr))double_ptr;
char_ptr = (typeof(char_ptr))ldouble_ptr;
char_ptr = (typeof(char_ptr))fcomplex_ptr;
char_ptr = (typeof(char_ptr))dcomplex_ptr;
char_ptr = (typeof(char_ptr))lcomplex_ptr;
char_ptr = (typeof(char_ptr))void_ptr;
char_ptr = (typeof(char_ptr))char_struct_ptr;
char_ptr = (typeof(char_ptr))double_struct_ptr;
char_ptr = (typeof(char_ptr))char_union_ptr;
char_ptr = (typeof(char_ptr))double_union_ptr;
char_ptr = (typeof(char_ptr))enum_ptr;
char_ptr = (typeof(char_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to char' is questionable [229] */
char_ptr = (typeof(char_ptr))func_ptr;
schar_ptr = (typeof(schar_ptr))bool_ptr;
schar_ptr = (typeof(schar_ptr))char_ptr;
schar_ptr = (typeof(schar_ptr))schar_ptr;
schar_ptr = (typeof(schar_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))lcomplex_ptr;
schar_ptr = (typeof(schar_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to signed char' may be troublesome [247] */
schar_ptr = (typeof(schar_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to signed char' is questionable [229] */
schar_ptr = (typeof(schar_ptr))func_ptr;
uchar_ptr = (typeof(uchar_ptr))bool_ptr;
uchar_ptr = (typeof(uchar_ptr))char_ptr;
uchar_ptr = (typeof(uchar_ptr))schar_ptr;
uchar_ptr = (typeof(uchar_ptr))uchar_ptr;
uchar_ptr = (typeof(uchar_ptr))short_ptr;
uchar_ptr = (typeof(uchar_ptr))ushort_ptr;
uchar_ptr = (typeof(uchar_ptr))int_ptr;
uchar_ptr = (typeof(uchar_ptr))uint_ptr;
uchar_ptr = (typeof(uchar_ptr))long_ptr;
uchar_ptr = (typeof(uchar_ptr))ulong_ptr;
uchar_ptr = (typeof(uchar_ptr))llong_ptr;
uchar_ptr = (typeof(uchar_ptr))ullong_ptr;
uchar_ptr = (typeof(uchar_ptr))float_ptr;
uchar_ptr = (typeof(uchar_ptr))double_ptr;
uchar_ptr = (typeof(uchar_ptr))ldouble_ptr;
uchar_ptr = (typeof(uchar_ptr))fcomplex_ptr;
uchar_ptr = (typeof(uchar_ptr))dcomplex_ptr;
uchar_ptr = (typeof(uchar_ptr))lcomplex_ptr;
uchar_ptr = (typeof(uchar_ptr))void_ptr;
uchar_ptr = (typeof(uchar_ptr))char_struct_ptr;
uchar_ptr = (typeof(uchar_ptr))double_struct_ptr;
uchar_ptr = (typeof(uchar_ptr))char_union_ptr;
uchar_ptr = (typeof(uchar_ptr))double_union_ptr;
uchar_ptr = (typeof(uchar_ptr))enum_ptr;
uchar_ptr = (typeof(uchar_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to unsigned char' is questionable [229] */
uchar_ptr = (typeof(uchar_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))bool_ptr;
short_ptr = (typeof(short_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))schar_ptr;
short_ptr = (typeof(short_ptr))uchar_ptr;
short_ptr = (typeof(short_ptr))short_ptr;
short_ptr = (typeof(short_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))lcomplex_ptr;
short_ptr = (typeof(short_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to short' may be troublesome [247] */
short_ptr = (typeof(short_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to short' is questionable [229] */
short_ptr = (typeof(short_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))bool_ptr;
ushort_ptr = (typeof(ushort_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))schar_ptr;
ushort_ptr = (typeof(ushort_ptr))uchar_ptr;
ushort_ptr = (typeof(ushort_ptr))short_ptr;
ushort_ptr = (typeof(ushort_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))lcomplex_ptr;
ushort_ptr = (typeof(ushort_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to unsigned short' may be troublesome [247] */
ushort_ptr = (typeof(ushort_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to unsigned short' is questionable [229] */
ushort_ptr = (typeof(ushort_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))bool_ptr;
int_ptr = (typeof(int_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))schar_ptr;
int_ptr = (typeof(int_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))ushort_ptr;
int_ptr = (typeof(int_ptr))int_ptr;
int_ptr = (typeof(int_ptr))uint_ptr;
int_ptr = (typeof(int_ptr))long_ptr;
int_ptr = (typeof(int_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))ullong_ptr;
int_ptr = (typeof(int_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))lcomplex_ptr;
int_ptr = (typeof(int_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))double_union_ptr;
int_ptr = (typeof(int_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to int' may be troublesome [247] */
int_ptr = (typeof(int_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to int' is questionable [229] */
int_ptr = (typeof(int_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))bool_ptr;
uint_ptr = (typeof(uint_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))schar_ptr;
uint_ptr = (typeof(uint_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))ushort_ptr;
uint_ptr = (typeof(uint_ptr))int_ptr;
uint_ptr = (typeof(uint_ptr))uint_ptr;
uint_ptr = (typeof(uint_ptr))long_ptr;
uint_ptr = (typeof(uint_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))ullong_ptr;
uint_ptr = (typeof(uint_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))lcomplex_ptr;
uint_ptr = (typeof(uint_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))double_union_ptr;
uint_ptr = (typeof(uint_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to unsigned int' may be troublesome [247] */
uint_ptr = (typeof(uint_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to unsigned int' is questionable [229] */
uint_ptr = (typeof(uint_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))bool_ptr;
long_ptr = (typeof(long_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))schar_ptr;
long_ptr = (typeof(long_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))ushort_ptr;
long_ptr = (typeof(long_ptr))int_ptr;
long_ptr = (typeof(long_ptr))uint_ptr;
long_ptr = (typeof(long_ptr))long_ptr;
long_ptr = (typeof(long_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))ullong_ptr;
long_ptr = (typeof(long_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))lcomplex_ptr;
long_ptr = (typeof(long_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))double_union_ptr;
long_ptr = (typeof(long_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to long' may be troublesome [247] */
long_ptr = (typeof(long_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to long' is questionable [229] */
long_ptr = (typeof(long_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))bool_ptr;
ulong_ptr = (typeof(ulong_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))schar_ptr;
ulong_ptr = (typeof(ulong_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))ushort_ptr;
ulong_ptr = (typeof(ulong_ptr))int_ptr;
ulong_ptr = (typeof(ulong_ptr))uint_ptr;
ulong_ptr = (typeof(ulong_ptr))long_ptr;
ulong_ptr = (typeof(ulong_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))ullong_ptr;
ulong_ptr = (typeof(ulong_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))lcomplex_ptr;
ulong_ptr = (typeof(ulong_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))double_union_ptr;
ulong_ptr = (typeof(ulong_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to unsigned long' may be troublesome [247] */
ulong_ptr = (typeof(ulong_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to unsigned long' is questionable [229] */
ulong_ptr = (typeof(ulong_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))bool_ptr;
llong_ptr = (typeof(llong_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))schar_ptr;
llong_ptr = (typeof(llong_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))ulong_ptr;
llong_ptr = (typeof(llong_ptr))llong_ptr;
llong_ptr = (typeof(llong_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))float_ptr;
llong_ptr = (typeof(llong_ptr))double_ptr;
llong_ptr = (typeof(llong_ptr))ldouble_ptr;
llong_ptr = (typeof(llong_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))lcomplex_ptr;
llong_ptr = (typeof(llong_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to long long' may be troublesome [247] */
llong_ptr = (typeof(llong_ptr))enum_ptr;
llong_ptr = (typeof(llong_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to long long' is questionable [229] */
llong_ptr = (typeof(llong_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))bool_ptr;
ullong_ptr = (typeof(ullong_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))schar_ptr;
ullong_ptr = (typeof(ullong_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))ulong_ptr;
ullong_ptr = (typeof(ullong_ptr))llong_ptr;
ullong_ptr = (typeof(ullong_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))float_ptr;
ullong_ptr = (typeof(ullong_ptr))double_ptr;
ullong_ptr = (typeof(ullong_ptr))ldouble_ptr;
ullong_ptr = (typeof(ullong_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))lcomplex_ptr;
ullong_ptr = (typeof(ullong_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to unsigned long long' may be troublesome [247] */
ullong_ptr = (typeof(ullong_ptr))enum_ptr;
ullong_ptr = (typeof(ullong_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to unsigned long long' is questionable [229] */
ullong_ptr = (typeof(ullong_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))bool_ptr;
float_ptr = (typeof(float_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))schar_ptr;
float_ptr = (typeof(float_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))ushort_ptr;
float_ptr = (typeof(float_ptr))int_ptr;
float_ptr = (typeof(float_ptr))uint_ptr;
float_ptr = (typeof(float_ptr))long_ptr;
float_ptr = (typeof(float_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))ullong_ptr;
float_ptr = (typeof(float_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))lcomplex_ptr;
float_ptr = (typeof(float_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))double_union_ptr;
float_ptr = (typeof(float_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to float' may be troublesome [247] */
float_ptr = (typeof(float_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to float' is questionable [229] */
float_ptr = (typeof(float_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))bool_ptr;
double_ptr = (typeof(double_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))schar_ptr;
double_ptr = (typeof(double_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))ulong_ptr;
double_ptr = (typeof(double_ptr))llong_ptr;
double_ptr = (typeof(double_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))float_ptr;
double_ptr = (typeof(double_ptr))double_ptr;
double_ptr = (typeof(double_ptr))ldouble_ptr;
double_ptr = (typeof(double_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))lcomplex_ptr;
double_ptr = (typeof(double_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))char_union_ptr;
double_ptr = (typeof(double_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to double' may be troublesome [247] */
double_ptr = (typeof(double_ptr))enum_ptr;
double_ptr = (typeof(double_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to double' is questionable [229] */
double_ptr = (typeof(double_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))bool_ptr;
ldouble_ptr = (typeof(ldouble_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))schar_ptr;
ldouble_ptr = (typeof(ldouble_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))ulong_ptr;
ldouble_ptr = (typeof(ldouble_ptr))llong_ptr;
ldouble_ptr = (typeof(ldouble_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))float_ptr;
ldouble_ptr = (typeof(ldouble_ptr))double_ptr;
ldouble_ptr = (typeof(ldouble_ptr))ldouble_ptr;
ldouble_ptr = (typeof(ldouble_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))lcomplex_ptr;
ldouble_ptr = (typeof(ldouble_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to long double' may be troublesome [247] */
ldouble_ptr = (typeof(ldouble_ptr))enum_ptr;
ldouble_ptr = (typeof(ldouble_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to long double' is questionable [229] */
ldouble_ptr = (typeof(ldouble_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))bool_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))schar_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))ulong_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))llong_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))float_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))double_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))ldouble_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))lcomplex_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to float _Complex' may be troublesome [247] */
fcomplex_ptr = (typeof(fcomplex_ptr))enum_ptr;
fcomplex_ptr = (typeof(fcomplex_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to float _Complex' is questionable [229] */
fcomplex_ptr = (typeof(fcomplex_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))bool_ptr;
dcomplex_ptr = (typeof(dcomplex_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))schar_ptr;
dcomplex_ptr = (typeof(dcomplex_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))fcomplex_ptr;
dcomplex_ptr = (typeof(dcomplex_ptr))dcomplex_ptr;
dcomplex_ptr = (typeof(dcomplex_ptr))lcomplex_ptr;
dcomplex_ptr = (typeof(dcomplex_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to double _Complex' may be troublesome [247] */
dcomplex_ptr = (typeof(dcomplex_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to double _Complex' is questionable [229] */
dcomplex_ptr = (typeof(dcomplex_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))bool_ptr;
lcomplex_ptr = (typeof(lcomplex_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))schar_ptr;
lcomplex_ptr = (typeof(lcomplex_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))fcomplex_ptr;
lcomplex_ptr = (typeof(lcomplex_ptr))dcomplex_ptr;
lcomplex_ptr = (typeof(lcomplex_ptr))lcomplex_ptr;
lcomplex_ptr = (typeof(lcomplex_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to long double _Complex' may be troublesome [247] */
lcomplex_ptr = (typeof(lcomplex_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to long double _Complex' is questionable [229] */
lcomplex_ptr = (typeof(lcomplex_ptr))func_ptr;
void_ptr = (typeof(void_ptr))bool_ptr;
void_ptr = (typeof(void_ptr))char_ptr;
void_ptr = (typeof(void_ptr))schar_ptr;
void_ptr = (typeof(void_ptr))uchar_ptr;
void_ptr = (typeof(void_ptr))short_ptr;
void_ptr = (typeof(void_ptr))ushort_ptr;
void_ptr = (typeof(void_ptr))int_ptr;
void_ptr = (typeof(void_ptr))uint_ptr;
void_ptr = (typeof(void_ptr))long_ptr;
void_ptr = (typeof(void_ptr))ulong_ptr;
void_ptr = (typeof(void_ptr))llong_ptr;
void_ptr = (typeof(void_ptr))ullong_ptr;
void_ptr = (typeof(void_ptr))float_ptr;
void_ptr = (typeof(void_ptr))double_ptr;
void_ptr = (typeof(void_ptr))ldouble_ptr;
void_ptr = (typeof(void_ptr))fcomplex_ptr;
void_ptr = (typeof(void_ptr))dcomplex_ptr;
void_ptr = (typeof(void_ptr))lcomplex_ptr;
void_ptr = (typeof(void_ptr))void_ptr;
void_ptr = (typeof(void_ptr))char_struct_ptr;
void_ptr = (typeof(void_ptr))double_struct_ptr;
void_ptr = (typeof(void_ptr))char_union_ptr;
void_ptr = (typeof(void_ptr))double_union_ptr;
void_ptr = (typeof(void_ptr))enum_ptr;
void_ptr = (typeof(void_ptr))double_array_ptr;
void_ptr = (typeof(void_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))bool_ptr;
char_struct_ptr = (typeof(char_struct_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))schar_ptr;
char_struct_ptr = (typeof(char_struct_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))lcomplex_ptr;
char_struct_ptr = (typeof(char_struct_ptr))void_ptr;
char_struct_ptr = (typeof(char_struct_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to struct typedef char_struct' may be troublesome [247] */
char_struct_ptr = (typeof(char_struct_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to struct typedef char_struct' is questionable [229] */
char_struct_ptr = (typeof(char_struct_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))bool_ptr;
double_struct_ptr = (typeof(double_struct_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))schar_ptr;
double_struct_ptr = (typeof(double_struct_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))lcomplex_ptr;
double_struct_ptr = (typeof(double_struct_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))char_struct_ptr;
double_struct_ptr = (typeof(double_struct_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to struct typedef double_struct' may be troublesome [247] */
double_struct_ptr = (typeof(double_struct_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to struct typedef double_struct' is questionable [229] */
double_struct_ptr = (typeof(double_struct_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))bool_ptr;
char_union_ptr = (typeof(char_union_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))schar_ptr;
char_union_ptr = (typeof(char_union_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))lcomplex_ptr;
char_union_ptr = (typeof(char_union_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))double_struct_ptr;
char_union_ptr = (typeof(char_union_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to union typedef char_union' may be troublesome [247] */
char_union_ptr = (typeof(char_union_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to union typedef char_union' is questionable [229] */
char_union_ptr = (typeof(char_union_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))bool_ptr;
double_union_ptr = (typeof(double_union_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))schar_ptr;
double_union_ptr = (typeof(double_union_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))float_ptr;
double_union_ptr = (typeof(double_union_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))lcomplex_ptr;
double_union_ptr = (typeof(double_union_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))char_union_ptr;
double_union_ptr = (typeof(double_union_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to union typedef double_union' may be troublesome [247] */
double_union_ptr = (typeof(double_union_ptr))enum_ptr;
double_union_ptr = (typeof(double_union_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to union typedef double_union' is questionable [229] */
double_union_ptr = (typeof(double_union_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))bool_ptr;
enum_ptr = (typeof(enum_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))schar_ptr;
enum_ptr = (typeof(enum_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))ushort_ptr;
enum_ptr = (typeof(enum_ptr))int_ptr;
enum_ptr = (typeof(enum_ptr))uint_ptr;
enum_ptr = (typeof(enum_ptr))long_ptr;
enum_ptr = (typeof(enum_ptr))ulong_ptr;
/* expect+1: warning: pointer cast from 'pointer to long long' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))llong_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long long' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))ullong_ptr;
enum_ptr = (typeof(enum_ptr))float_ptr;
/* expect+1: warning: pointer cast from 'pointer to double' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))double_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))ldouble_ptr;
/* expect+1: warning: pointer cast from 'pointer to float _Complex' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))lcomplex_ptr;
enum_ptr = (typeof(enum_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))char_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef double_union' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))double_union_ptr;
enum_ptr = (typeof(enum_ptr))enum_ptr;
/* expect+1: warning: pointer cast from 'pointer to array[5] of double' to 'pointer to enum typedef int_enum' may be troublesome [247] */
enum_ptr = (typeof(enum_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to enum typedef int_enum' is questionable [229] */
enum_ptr = (typeof(enum_ptr))func_ptr;
/* expect+1: warning: pointer cast from 'pointer to _Bool' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))bool_ptr;
double_array_ptr = (typeof(double_array_ptr))char_ptr;
/* expect+1: warning: pointer cast from 'pointer to signed char' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))schar_ptr;
double_array_ptr = (typeof(double_array_ptr))uchar_ptr;
/* expect+1: warning: pointer cast from 'pointer to short' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))short_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned short' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))ushort_ptr;
/* expect+1: warning: pointer cast from 'pointer to int' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))int_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned int' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))uint_ptr;
/* expect+1: warning: pointer cast from 'pointer to long' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))long_ptr;
/* expect+1: warning: pointer cast from 'pointer to unsigned long' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))ulong_ptr;
double_array_ptr = (typeof(double_array_ptr))llong_ptr;
double_array_ptr = (typeof(double_array_ptr))ullong_ptr;
/* expect+1: warning: pointer cast from 'pointer to float' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))float_ptr;
double_array_ptr = (typeof(double_array_ptr))double_ptr;
double_array_ptr = (typeof(double_array_ptr))ldouble_ptr;
double_array_ptr = (typeof(double_array_ptr))fcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to double _Complex' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))dcomplex_ptr;
/* expect+1: warning: pointer cast from 'pointer to long double _Complex' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))lcomplex_ptr;
double_array_ptr = (typeof(double_array_ptr))void_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef char_struct' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))char_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to struct typedef double_struct' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))double_struct_ptr;
/* expect+1: warning: pointer cast from 'pointer to union typedef char_union' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))char_union_ptr;
double_array_ptr = (typeof(double_array_ptr))double_union_ptr;
/* expect+1: warning: pointer cast from 'pointer to enum typedef int_enum' to 'pointer to array[5] of double' may be troublesome [247] */
double_array_ptr = (typeof(double_array_ptr))enum_ptr;
double_array_ptr = (typeof(double_array_ptr))double_array_ptr;
/* expect+1: warning: converting 'pointer to function(void) returning void' to 'pointer to array[5] of double' is questionable [229] */
double_array_ptr = (typeof(double_array_ptr))func_ptr;
/* expect+1: warning: converting 'pointer to _Bool' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))bool_ptr;
/* expect+1: warning: converting 'pointer to char' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))char_ptr;
/* expect+1: warning: converting 'pointer to signed char' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))schar_ptr;
/* expect+1: warning: converting 'pointer to unsigned char' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))uchar_ptr;
/* expect+1: warning: converting 'pointer to short' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))short_ptr;
/* expect+1: warning: converting 'pointer to unsigned short' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))ushort_ptr;
/* expect+1: warning: converting 'pointer to int' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))int_ptr;
/* expect+1: warning: converting 'pointer to unsigned int' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))uint_ptr;
/* expect+1: warning: converting 'pointer to long' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))long_ptr;
/* expect+1: warning: converting 'pointer to unsigned long' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))ulong_ptr;
/* expect+1: warning: converting 'pointer to long long' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))llong_ptr;
/* expect+1: warning: converting 'pointer to unsigned long long' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))ullong_ptr;
/* expect+1: warning: converting 'pointer to float' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))float_ptr;
/* expect+1: warning: converting 'pointer to double' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))double_ptr;
/* expect+1: warning: converting 'pointer to long double' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))ldouble_ptr;
/* expect+1: warning: converting 'pointer to float _Complex' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))fcomplex_ptr;
/* expect+1: warning: converting 'pointer to double _Complex' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))dcomplex_ptr;
/* expect+1: warning: converting 'pointer to long double _Complex' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))lcomplex_ptr;
func_ptr = (typeof(func_ptr))void_ptr;
/* expect+1: warning: converting 'pointer to struct typedef char_struct' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))char_struct_ptr;
/* expect+1: warning: converting 'pointer to struct typedef double_struct' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))double_struct_ptr;
/* expect+1: warning: converting 'pointer to union typedef char_union' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))char_union_ptr;
/* expect+1: warning: converting 'pointer to union typedef double_union' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))double_union_ptr;
/* expect+1: warning: converting 'pointer to enum typedef int_enum' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))enum_ptr;
/* expect+1: warning: converting 'pointer to array[5] of double' to 'pointer to function(void) returning void' is questionable [229] */
func_ptr = (typeof(func_ptr))double_array_ptr;
func_ptr = (typeof(func_ptr))func_ptr;
}
|