Skip to content
  1. Aug 26, 2007
    • Steve Naroff's avatar
      · 5f90ca99
      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
      5f90ca99
    • Chris Lattner's avatar
      steve's recent changes fixed this bogus warning. · e026ebd6
      Chris Lattner authored
      llvm-svn: 41432
      e026ebd6
    • Chris Lattner's avatar
      Cases like this: · 1895e58c
      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
      1895e58c
  2. Aug 23, 2007
  3. Aug 21, 2007
    • Chris Lattner's avatar
      we now correctly emit: · 91b9a4c8
      Chris Lattner authored
      unused-expr.c:8:6: warning: comparison of distinct pointer types ('int volatile *' and 'int *')
        VP == P;
        ~~ ^  ~
      
      llvm-svn: 41210
      91b9a4c8
  4. Aug 20, 2007
  5. Aug 18, 2007
  6. Aug 17, 2007
  7. Aug 14, 2007
    • Ted Kremenek's avatar
      Added support for additional format string checking for the printf · e68f1aad
      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
      e68f1aad
  8. Aug 10, 2007
    • Chris Lattner's avatar
      initial support for checking format strings, patch by Ted Kremenek: · b87b1b36
      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
      b87b1b36
  9. Aug 04, 2007
  10. Aug 03, 2007
  11. Aug 02, 2007
  12. Jul 25, 2007
    • Chris Lattner's avatar
      Fix a couple of bugs, add some new cool stuff. · 02c0439a
      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
      02c0439a
  13. Jul 24, 2007
  14. Jul 23, 2007
  15. Jul 22, 2007
  16. Jul 21, 2007
    • Chris Lattner's avatar
      testcase from neil · fd5e05f5
      Chris Lattner authored
      llvm-svn: 40173
      fd5e05f5
    • Chris Lattner's avatar
      Fix off-by-one error when emitting diagnostics. Also, make diagnostic · a6f5ab54
      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
      a6f5ab54
    • Chris Lattner's avatar
      Two fixes: · 3940737e
      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
      3940737e
  17. Jul 19, 2007
  18. Jul 17, 2007
  19. Jul 16, 2007
    • Chris Lattner's avatar
      Remove an extraneous QualType from CastExpr, it's type is always · 51aff8bd
      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
      51aff8bd
  20. Jul 13, 2007
  21. Jun 27, 2007
  22. Jun 08, 2007
  23. Dec 03, 2006
  24. Nov 20, 2006
Loading