Skip to content
  1. Aug 26, 2007
  2. Aug 25, 2007
    • Chris Lattner's avatar
      new testcase · 1bc6fac5
      Chris Lattner authored
      llvm-svn: 41406
      1bc6fac5
    • Chris Lattner's avatar
      27f00282
    • Steve Naroff's avatar
      · 46c72915
      Steve Naroff authored
      Surpress the UsualUnaryConversions for compound assignment operators. This change
      eliminates the possibility that the left hand expression is an ImplicitCastExpr.
      As a result, I removed the check for ImplicitCastExpr in Expr::isLvalue().
      
      This results in the following AST's...
      
      [dylan:~/llvm/tools/clang] admin% cat fix.c
      
      short x; void test4(char c) { 
        x += c; 
        x = x + c;
      }
      [dylan:~/llvm/tools/clang] admin% ../../Debug/bin/clang fix.c -parse-ast-dump
      Read top-level variable decl: 'x'
      
      void test4(char c)
      (CompoundStmt 0x2605d30
        (CompoundAssignOperator 0x2605c40 'short' '+='
          (DeclRefExpr 0x2605c00 'short' Decl='x' 0x2605a80)
          (DeclRefExpr 0x2605c20 'char' Decl='c' 0x2605bc0))
        (BinaryOperator 0x2605d10 'short' '='
          (DeclRefExpr 0x2605c60 'short' Decl='x' 0x2605a80)
          (ImplicitCastExpr 0x2605d00 'short'
            (BinaryOperator 0x2605ce0 'int' '+'
              (ImplicitCastExpr 0x2605cc0 'int'
                (DeclRefExpr 0x2605c80 'short' Decl='x' 0x2605a80))
              (ImplicitCastExpr 0x2605cd0 'int'
                (DeclRefExpr 0x2605ca0 'char' Decl='c' 0x2605bc0))))))
      
      llvm-svn: 41404
      46c72915
    • Chris Lattner's avatar
      read and ignore the body of a namespace. · 479ed3aa
      Chris Lattner authored
      llvm-svn: 41403
      479ed3aa
    • Steve Naroff's avatar
      Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. · e2562ff9
      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
      e2562ff9
    • Steve Naroff's avatar
      Give CXXBoolLiteralExpr a type (all expressions need a valid type). · aac9415b
      Steve Naroff authored
      This fixes the following:
      
      ******************** TEST 'Parser/cxx-bool.cpp' FAILED! ********************
      Command:
      clang -fsyntax-only Parser/cxx-bool.cpp
      Output:
      SemaExpr.cpp:731: failed assertion `!t.isNull() && "DefaultFunctionArrayConversion - missing type"'
      Output/cxx-bool.cpp.out.script: line 1: 22697 Abort trap              clang -fsyntax-only Parser/cxx-bool.cpp
      
      llvm-svn: 41401
      aac9415b
    • Chris Lattner's avatar
      refactor enough of the top-level parsing logic to parse and · a5235173
      Chris Lattner authored
      ignore 'namespace foo {}'
      
      llvm-svn: 41400
      a5235173
    • Chris Lattner's avatar
      C++ explicitly allows an empty source file. · 66b67efa
      Chris Lattner authored
      llvm-svn: 41399
      66b67efa
    • Chris Lattner's avatar
    • Chris Lattner's avatar
      reenable this. · 6d5922fd
      Chris Lattner authored
      llvm-svn: 41397
      6d5922fd
    • Chris Lattner's avatar
      Fix the regression on test/Sema/cfstring.c · 9449fd7b
      Chris Lattner authored
      llvm-svn: 41396
      9449fd7b
    • Chris Lattner's avatar
      test the parser only, not sema. · a206358b
      Chris Lattner authored
      llvm-svn: 41395
      a206358b
    • Chris Lattner's avatar
      Split the ASTNode out for compound assignments out from binary operators. Now · 86928119
      Chris Lattner authored
      they show up in dumps etc.
      
      llvm-svn: 41393
      86928119
    • Chris Lattner's avatar
      fix off-by-one error · d8c9fc5e
      Chris Lattner authored
      llvm-svn: 41392
      d8c9fc5e
    • Chris Lattner's avatar
      Fix clang -parse-ast-dump carbon.c · e7d0864a
      Chris Lattner authored
      llvm-svn: 41391
      e7d0864a
    • Chris Lattner's avatar
      rename sNames -> StmtClassInfo. Make lookups constant time. · 4d15a0db
      Chris Lattner authored
      llvm-svn: 41390
      4d15a0db
    • Steve Naroff's avatar
      · 0c1c7ed5
      Steve Naroff authored
      This modest change insures ImplicitCastExpr's get generated for all "assignments",
      while includes init decls, assignment exprs, call exprs, and return statements.
      
      Here are a few examples with the correct AST's...
      
      [dylan:~/llvm/tools/clang] admin% cat impcomp.c
      
      _Complex double X;
      void test2(int c) {
        X = 5;
      }
      void foo() {
        int i;
        double d = i;
        double _Complex a = 5;
      
        test2(a);
        a = 5;
        d = i;
      }
      
      
      [dylan:~/llvm/tools/clang] admin% ../../Debug/bin/clang impcomp.c -parse-ast-dump
      Read top-level variable decl: 'X'
      
      void test2(int c)
      (CompoundStmt 0x2605ce0
        (BinaryOperator 0x2605cc0 '_Complex double' '='
          (DeclRefExpr 0x2605c70 '_Complex double' Decl='X' 0x2605af0)
          (ImplicitCastExpr 0x2605cb0 '_Complex double'
            (IntegerLiteral 0x2605c90 'int' 5))))
      
      
      void foo()
      (CompoundStmt 0x2606030
        (DeclStmt 0x2605bd0
          0x2605d90 "int i")
        (DeclStmt 0x2605e20
          0x2605de0 "double d =
            (ImplicitCastExpr 0x2605e10 'double'
              (DeclRefExpr 0x2605dc0 'int' Decl='i' 0x2605d90))")
        (DeclStmt 0x2605e90
          0x2605e50 "_Complex double a =
            (ImplicitCastExpr 0x2605e80 '_Complex double'
              (IntegerLiteral 0x2605e30 'int' 5))")
        (CallExpr 0x2605f20 'void'
          (ImplicitCastExpr 0x2605f00 'void (*)(int)'
            (DeclRefExpr 0x2605ea0 'void (int)' Decl='test2' 0x2605c00))
          (ImplicitCastExpr 0x2605f10 'int'
            (DeclRefExpr 0x2605ec0 '_Complex double' Decl='a' 0x2605e50)))
        (BinaryOperator 0x2605fa0 '_Complex double' '='
          (DeclRefExpr 0x2605f50 '_Complex double' Decl='a' 0x2605e50)
          (ImplicitCastExpr 0x2605f90 '_Complex double'
            (IntegerLiteral 0x2605f70 'int' 5)))
        (BinaryOperator 0x2606010 'double' '='
          (DeclRefExpr 0x2605fc0 'double' Decl='d' 0x2605de0)
          (ImplicitCastExpr 0x2606000 'double'
            (DeclRefExpr 0x2605fe0 'int' Decl='i' 0x2605d90))))
      
      llvm-svn: 41379
      0c1c7ed5
  3. Aug 24, 2007
Loading