File: warn-char-subscripts.cpp

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (103 lines) | stat: -rw-r--r-- 2,724 bytes parent folder | download | duplicates (8)
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
// RUN: %clang_cc1 -Wchar-subscripts -fsyntax-only -verify %s

void t1(void) {
  int array[1] = { 0 };
  char subscript = 0;
  int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
}

void t2(void) {
  int array[1] = { 0 };
  char subscript = 0;
  int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
}

void t3(void) {
  int *array = 0;
  char subscript = 0;
  int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
}

void t4(void) {
  int *array = 0;
  char subscript = 0;
  int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
}

char returnsChar(void);
void t5(void) {
  int *array = 0;
  int val = array[returnsChar()]; // expected-warning{{array subscript is of type 'char'}}
}

void t6(void) {
  int array[1] = { 0 };
  signed char subscript = 0;
  int val = array[subscript]; // no warning for explicit signed char
}

void t7(void) {
  int array[1] = { 0 };
  unsigned char subscript = 0;
  int val = array[subscript]; // no warning for unsigned char
}

typedef char CharTy;
void t8(void) {
  int array[1] = { 0 };
  CharTy subscript = 0;
  int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
}

typedef signed char SignedCharTy;
void t9(void) {
  int array[1] = { 0 };
  SignedCharTy subscript = 0;
  int val = array[subscript]; // no warning for explicit signed char
}

typedef unsigned char UnsignedCharTy;
void t10(void) {
  int array[1] = { 0 };
  UnsignedCharTy subscript = 0;
  int val = array[subscript]; // no warning for unsigned char
}

void t11(void) {
  int array[256] = { 0 };
  int val = array['a']; // no warning for char with known positive value
}

void t12(void) {
  int array[256] = { 0 };
  char b = 'a';
  int val = array[b]; // expected-warning{{array subscript is of type 'char'}}
}

void t13(void) {
  int array[256] = { 0 };
  const char b = 'a';
  int val = array[b]; // no warning for char with known positive value
}

void t14(void) {
  int array[256] = { 0 };
  constexpr char b = 'a';
  int val = array[b]; // no warning for char with known positive value
}

void t15(void) {
  int array[256] = { 0 }; // expected-note {{array 'array' declared here}}
  const char b = -1;
  // expected-warning@+2 {{array subscript is of type 'char'}}
  // expected-warning@+1 {{array index -1 is before the beginning of the array}}
  int val = array[b];
}

void t16(void) {
  int array[256] = { 0 }; // expected-note {{array 'array' declared here}}
  constexpr char b = -1;
  // expected-warning@+2 {{array subscript is of type 'char'}}
  // expected-warning@+1 {{array index -1 is before the beginning of the array}}
  int val = array[b];
}