- Aug 26, 2007
-
-
Steve Naroff authored
Fix bogus warnings (noticed by Chris) with array-constraints.c. Remove bogus type conversions in Sema::GetTypeForDeclarator(). This commit only deals with the array types (DeclaratorCheck::Array), though the rest of this routine should be reviewed. Given the complexity of C declarators, I don't want to change the entire routine now (will discuss with Chris tomorrow). llvm-svn: 41443
-
Chris Lattner authored
llvm-svn: 41432
-
Chris Lattner authored
char *C; C != ((void*)0); Should not warn about incompatible pointer types. Also, make sure to insert an implicit conversion even if the operand is null. llvm-svn: 41408
-
- Aug 23, 2007
-
-
Chris Lattner authored
verifying case ranges. llvm-svn: 41331
-
Chris Lattner authored
switch.c:16:8: warning: empty case range specified case 100 ... 99: ; // expected-warning {{empty case range}} ^~~~~~~~~~ llvm-svn: 41328
-
Chris Lattner authored
llvm-svn: 41317
-
Chris Lattner authored
llvm-svn: 41315
-
Chris Lattner authored
warnings when converting case values to the expression type. llvm-svn: 41313
-
Chris Lattner authored
(when ready) this test should change to test -fsyntax-only. llvm-svn: 41307
-
- Aug 21, 2007
-
-
Chris Lattner authored
unused-expr.c:8:6: warning: comparison of distinct pointer types ('int volatile *' and 'int *') VP == P; ~~ ^ ~ llvm-svn: 41210
-
- Aug 20, 2007
-
-
Ted Kremenek authored
for the following C++ casts: static_cast, reinterpret_cast, and const_cast. llvm-svn: 41181
-
- Aug 18, 2007
-
-
Ted Kremenek authored
llvm-svn: 41147
-
- Aug 17, 2007
-
-
Anders Carlsson authored
llvm-svn: 41136
-
- Aug 14, 2007
-
-
Ted Kremenek authored
family of functions. Previous functionality only included checking to see if the format string was a string literal. Now we check parse the format string (if it is a literal) and perform the following checks: (1) Warn if: number conversions (e.g. "%d") != number data arguments. (2) Warn about missing format strings (e.g., "printf()"). (3) Warn if the format string is not a string literal. (4) Warn about the use se of '%n' conversion. This conversion is discouraged for security reasons. (5) Warn about malformed conversions. For example '%;', '%v'; these are not valid. (6) Warn about empty format strings; e.g. printf(""). Although these can be optimized away by the compiler, they can be indicative of broken programmer logic. We may need to add additional support to see when such cases occur within macro expansion to avoid false positives. (7) Warn if the string literal is wide; e.g. L"%d". (8) Warn if we detect a '\0' character WITHIN the format string. Test cases are included. llvm-svn: 41076
-
- Aug 10, 2007
-
-
Chris Lattner authored
"I've coded up some support in clang to flag warnings for non-constant format strings used in calls to printf-like functions (all the functions listed in "man fprintf"). Non-constant format strings are a source of many security exploits in C/C++ programs, and I believe are currently detected by gcc using the flag -Wformat-nonliteral." llvm-svn: 41003
-
- Aug 04, 2007
-
-
Chris Lattner authored
llvm-svn: 40800
-
- Aug 03, 2007
-
-
Chris Lattner authored
llvm-svn: 40766
-
Chris Lattner authored
llvm-svn: 40765
-
- Aug 02, 2007
-
-
Chris Lattner authored
llvm-svn: 40759
-
- Jul 25, 2007
-
-
Chris Lattner authored
1. Fix a todo in Parser::ParseTag, to recover better. On code like that in test/Sema/decl-invalid.c it causes us to return a single error instead of multiple. 2. Fix an error in Sema::ParseDeclarator, where it would crash if the declarator didn't have an identifier. Instead, diagnose the problem. 3. Start adding infrastructure to track the range of locations covered by a declspec or declarator. This is mostly implemented for declspec, but could be improved, it is missing for declarator. Thanks to Neil for pointing out this crash. llvm-svn: 40482
-
- Jul 24, 2007
-
-
Chris Lattner authored
This implements test/Sema/stmt_exprs.c llvm-svn: 40465
-
- Jul 23, 2007
-
-
Chris Lattner authored
this fixes test/Sema/switch.c. llvm-svn: 40438
-
- Jul 22, 2007
-
-
Anders Carlsson authored
llvm-svn: 40388
-
- Jul 21, 2007
-
-
Chris Lattner authored
llvm-svn: 40173
-
Chris Lattner authored
a bit nicer for people who pass lots of extra arguments to calls by selecting them all instead of just the first one: arg-duplicate.c:13:13: error: too many arguments to function f3 (1, 1, 2, 3, 4); // expected-error {{too many arguments to function}} ^~~~~~~ This implements test/Sema/arg-duplicate.c, thanks to Neil for pointing out this crash. llvm-svn: 40136
-
Chris Lattner authored
1) fix a crash on test/Sema/default.c by making sure that the switch scope is non-null. 2) if there is an error sema'ing a default or case stmt, make sure to return the substmt up, so that the error recovery code has more acurate info to continue with. llvm-svn: 40134
-
- Jul 19, 2007
-
-
Chris Lattner authored
return a null type. If there is an error parsing the type, pick a new type for error recovery purposes. llvm-svn: 40029
-
- Jul 17, 2007
-
-
Chris Lattner authored
llvm-svn: 39958
-
Bill Wendling authored
According to the spec (C++ 5p6[expr]), we need to adjust "T&" to "T" before further analysis. We do this via the "implicit cast" thingy. llvm-svn: 39953
-
- Jul 16, 2007
-
-
Chris Lattner authored
the result type of the expr node. Implement isIntegerConstantExpr for ImplicitCastExpr nodes the same was as for CastExpr nodes. Implement proper sign/zero extension as well as truncation and noop conversion in the i-c-e evaluator. This allows us to correctly handle i-c-e's like these: char array[1024/(sizeof (long))]; int x['\xBb' == (char) 187 ? 1: -1]; this implements test/Sema/i-c-e2.c llvm-svn: 39888
-
- Jul 13, 2007
-
-
Chris Lattner authored
on test/Sema/implicit-int.c llvm-svn: 39833
-
Chris Lattner authored
llvm-svn: 39826
-
- Jun 27, 2007
-
-
Chris Lattner authored
llvm-svn: 39683
-
- Jun 08, 2007
-
-
Chris Lattner authored
llvm-svn: 39609
-
- Dec 03, 2006
-
-
Chris Lattner authored
This allows us to handle typedefs of void correctly. This implements clang/test/Sema/void_arg.c llvm-svn: 39236
-
- Nov 20, 2006
-
-
Chris Lattner authored
llvm-svn: 39195
-