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 25, 2007
  3. Aug 24, 2007
  4. Aug 23, 2007
  5. Aug 22, 2007
  6. Aug 21, 2007
  7. Aug 20, 2007
  8. Aug 18, 2007
  9. Aug 17, 2007
  10. Aug 16, 2007
    • Steve Naroff's avatar
      · cdee44c1
      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
      cdee44c1
  11. 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
  12. Aug 11, 2007
  13. Aug 10, 2007
  14. Aug 09, 2007
  15. Aug 05, 2007
    • Steve Naroff's avatar
      · 8a4cf97a
      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
      8a4cf97a
  16. Aug 04, 2007
    • Chris Lattner's avatar
      the sse intrinsics are missing, leading to errors. · 374b06a0
      Chris Lattner authored
      llvm-svn: 40800
      374b06a0
    • Chris Lattner's avatar
      fix hang in testsuite · 2f48d5e2
      Chris Lattner authored
      llvm-svn: 40799
      2f48d5e2
    • Steve Naroff's avatar
      Restrict vector component access (using "." and "[]") to variables. · 0104731e
      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
      0104731e
  17. Aug 03, 2007
    • Steve Naroff's avatar
      · 9efdabc5
      Steve Naroff authored
      Implement __builtin_choose_expr.
      
      llvm-svn: 40794
      9efdabc5
    • Steve Naroff's avatar
      · 7d451d61
      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
      7d451d61
Loading