Skip to content
  1. Sep 25, 2008
  2. Sep 17, 2008
  3. Sep 11, 2008
  4. Sep 10, 2008
  5. Sep 03, 2008
    • Steve Naroff's avatar
      Add semantic analysis for "blocks". · c540d669
      Steve Naroff authored
      Highlights...
      
      - 4 new AST nodes, BlockExpr, BlockStmtExpr, BlockExprExpr, BlockDeclRefExpr.
      - Sema::ActOnBlockStart(), ActOnBlockError(), ActOnBlockStmtExpr(), ActOnBlockExprExpr(), ActOnBlockReturnStmt().
      
      Next steps...
      
      - hack Sema::ActOnIdentifierExpr() to deal with block decl refs.
      - add attribute handler for byref decls.
      - add test cases.
      
      llvm-svn: 55710
      c540d669
  6. Aug 25, 2008
  7. Aug 18, 2008
  8. Aug 17, 2008
  9. Aug 14, 2008
  10. Aug 11, 2008
    • Daniel Dunbar's avatar
      More #include cleaning · 56fdb6ae
      Daniel Dunbar authored
       - Kill unnecessary #includes in .cpp files. This is an automatic
         sweep so some things removed are actually used, but happen to be
         included by a previous header. I tried to get rid of the obvious
         examples and this was the easiest way to trim the #includes in one
         fell swoop.
       - We now return to regularly scheduled development.
      
      llvm-svn: 54632
      56fdb6ae
    • Daniel Dunbar's avatar
      More #include cleaning · 6e8aa537
      Daniel Dunbar authored
       - Drop {Decl.h,DeclObjC.h,IdentifierTable.h} from Expr.h
       - Moved Sema::getCurMethodDecl() out of line (dependent on
         ObjCMethodDecl via dyn_cast).
      
      llvm-svn: 54629
      6e8aa537
  11. Aug 08, 2008
  12. Jul 26, 2008
  13. Jul 25, 2008
  14. Jul 23, 2008
  15. Jun 28, 2008
  16. Apr 16, 2008
    • Steve Naroff's avatar
      Remove FileVarDecl and BlockVarDecl. They are replaced by... · 08899ff8
      Steve Naroff authored
      Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl().
      
      This is a fairly mechanical/large change. As a result, I avoided making any changes/simplifications that weren't directly related. I did break two Analysis tests. I also have a couple FIXME's in UninitializedValues.cpp. Ted, can you take a look? If the bug isn't obvious, I am happy to dig in and fix it (since I broke it).
      
      llvm-svn: 49748
      08899ff8
  17. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  18. Mar 13, 2008
  19. Mar 05, 2008
  20. Feb 06, 2008
  21. Jan 29, 2008
  22. Jan 16, 2008
  23. Jan 10, 2008
  24. Jan 07, 2008
  25. Jan 05, 2008
  26. Jan 04, 2008
  27. Jan 03, 2008
  28. Dec 29, 2007
  29. Dec 04, 2007
  30. Nov 27, 2007
    • Steve Naroff's avatar
      · 0ee0b0ab
      Steve Naroff authored
      Move the null pointer constant check from Sema::CheckSingleInitializer/ActOnCallExpr/CheckMessageArgumentTypes/ActOnReturnStmt to Sema::CheckSingleAssignmentConstraints. This makes sure all null pointer assignments are considered compatible.
      
      Thanks to Seo Sanghyeon for the bug, follow-through, and patch!
      
      llvm-svn: 44366
      0ee0b0ab
    • Anders Carlsson's avatar
      Add more semantic analysis for inline asm statements. · f511f646
      Anders Carlsson authored
      llvm-svn: 44349
      f511f646
  31. Nov 25, 2007
Loading