Remove some false positives and enable the check.
[smatch.git] / validation / type1.c
blob4f08f88a98cb02ead7117e8d8c37ba8568ad84ae
1 /*
2 * Sparse used to get this wrong.
4 * When evaluating the argument to the inline function for the array, Sparse
5 * didn't properly demote the "char []" to a "char *", but instead it would
6 * follow the dereference and get a "struct hello".
8 * Which made no sense at all.
9 */
11 static inline int deref(const char *s)
13 return *s;
16 struct hello {
17 char array[10];
20 static int test(struct hello *arg)
22 return deref(arg->array);