Skip to content
  1. 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
  2. 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
  3. Mar 13, 2008
  4. Mar 05, 2008
  5. Feb 06, 2008
  6. Jan 29, 2008
  7. Jan 16, 2008
  8. Jan 10, 2008
  9. Jan 07, 2008
  10. Jan 05, 2008
  11. Jan 04, 2008
  12. Jan 03, 2008
  13. Dec 29, 2007
  14. Dec 04, 2007
  15. 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
  16. Nov 25, 2007
  17. Nov 24, 2007
  18. Nov 23, 2007
  19. Nov 22, 2007
  20. Nov 20, 2007
  21. Nov 07, 2007
  22. Nov 02, 2007
  23. Oct 29, 2007
  24. Oct 10, 2007
  25. Oct 07, 2007
  26. Sep 21, 2007
  27. Sep 16, 2007
  28. Sep 14, 2007
    • Steve Naroff's avatar
      · a23cc796
      Steve Naroff authored
      Move Decl::NextDeclarator (w/ setters/getters) down to ScopedDecl/FieldDecl.
      
      Decl is now svelte:-)
      
      llvm-svn: 41935
      a23cc796
  29. Sep 13, 2007
    • Steve Naroff's avatar
      · 9def2b15
      Steve Naroff authored
      Phase 2 of making the Decl class more lightweight...
      
      Move Identifier/Loc instance variables (and associated getters/setters) down from Decl to ScopedDecl/FieldDecl.
      
      Objc AST's can now inherit from Decl without getting instance variables and types that are C specific. For now, I am keeping NextDeclarator, since I believe it may be useful to ObjC. If not, it can be moved later.
      
      llvm-svn: 41934
      9def2b15
  30. Sep 06, 2007
Loading