A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the third batch of tests being updated (there are a significant number of other tests left to be updated).
65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
// 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
|
|
}
|