- 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 25, 2007
-
-
Chris Lattner authored
llvm-svn: 41406
-
Steve Naroff authored
This fixes the following bug... t.c:1:31: error: expression is not assignable short x; void foo(char c) { x += c; } This case, among others are now captured in implicit-casts.c. llvm-svn: 41402
-
Chris Lattner authored
llvm-svn: 41397
-
Chris Lattner authored
llvm-svn: 41395
-
- Aug 24, 2007
-
-
Chris Lattner authored
llvm-svn: 41376
-
Chris Lattner authored
operators in all their glory :) llvm-svn: 41373
-
Chris Lattner authored
llvm-svn: 41346
-
- 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
llvm-svn: 41314
-
Chris Lattner authored
warnings when converting case values to the expression type. llvm-svn: 41313
-
Chris Lattner authored
llvm-svn: 41308
-
Chris Lattner authored
(when ready) this test should change to test -fsyntax-only. llvm-svn: 41307
-
- Aug 22, 2007
-
-
Chris Lattner authored
This fixes test/Parser/control-scope.c llvm-svn: 41263
-
- Aug 21, 2007
-
-
Chris Lattner authored
llvm-svn: 41219
-
Chris Lattner authored
unused-expr.c:8:6: warning: comparison of distinct pointer types ('int volatile *' and 'int *') VP == P; ~~ ^ ~ llvm-svn: 41210
-
Chris Lattner authored
llvm-svn: 41202
-
- 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 16, 2007
-
-
Steve Naroff authored
Fixed Sema::CheckEqualityOperands() and Sema::CheckRelationalOperands() to deal more thoughtfully with incompatible pointers. This includes: - Emit a diagnostic when two pointers aren't compatible! - Promote one of the pointers/integers so we maintain the invariant expected by the code generator (i.e. that the left/right types match). - Upgrade the pointer/integer comparison diagnostic to include the types. llvm-svn: 41127
-
- 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 11, 2007
-
-
Chris Lattner authored
llvm-svn: 41015
-
- Aug 10, 2007
-
-
Chris Lattner authored
llvm-svn: 41004
-
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
-
Chris Lattner authored
preprocessor state, causing bogus diagnostics when the file is parsed for real. This implements Misc/diag-checker.c. Thanks to Ted for noticing this. llvm-svn: 41000
-
Chris Lattner authored
llvm-svn: 40996
-
Chris Lattner authored
llvm-svn: 40994
-
- Aug 09, 2007
-
-
Steve Naroff authored
llvm-svn: 40951
-
- Aug 05, 2007
-
-
Steve Naroff authored
Make sure the good old "function/array conversion" is done to function parameters. This resulted in the following error... [dylan:clang/test/Parser] admin% cat parmvardecl_conversion.c // RUN: clang -parse-ast-check %s void f (int p[]) { p++; } [dylan:clang/test/Parser] admin% clang -parse-ast-check parmvardecl_conversion.c Errors seen but not expected: Line 3: cannot modify value of type 'int []' With this fix, the test case above succeeds. llvm-svn: 40831
-
- Aug 04, 2007
-
-
Chris Lattner authored
llvm-svn: 40800
-
Chris Lattner authored
llvm-svn: 40799
-
Steve Naroff authored
Chris suggested this, since it simplifies the code generator. If this features is needed (and we don't think it is), we can revisit. The following test case now produces an error. [dylan:~/llvm/tools/clang] admin% cat t.c typedef __attribute__(( ocu_vector_type(4) )) float float4; static void test() { float4 vec4; vec4.rg.g; vec4.rg[1]; } [dylan:~/llvm/tools/clang] admin% ../../Debug/bin/clang t.c t.c:8:12: error: vector component access limited to variables vec4.rg.g; ^~ t.c:9:12: error: vector component access limited to variables vec4.rg[1]; ^~~ 2 diagnostics generated. llvm-svn: 40795
-
- Aug 03, 2007
-
-
Steve Naroff authored
Implement __builtin_choose_expr. llvm-svn: 40794
-
Steve Naroff authored
Add a test case to validate code gen for typeof/builtin_types_compatible. This test case currently generates the following unexpected warnings (when compared with gcc). [dylan:clang/test/Parser] admin% ../../../../Debug/bin/clang -parse-ast-check builtin_types_compatible.c Warnings seen but not expected: Line 28: expression result unused Line 29: expression result unused Line 30: expression result unused Line 31: expression result unused Line 32: expression result unused Line 33: expression result unused llvm-svn: 40789
-