Skip to content
  1. Apr 19, 2008
  2. 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
  3. Apr 06, 2008
  4. Mar 31, 2008
  5. Mar 19, 2008
  6. 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
  7. Mar 14, 2008
  8. Mar 09, 2008
  9. Mar 08, 2008
  10. Mar 05, 2008
  11. Mar 03, 2008
  12. Mar 01, 2008
  13. Feb 19, 2008
  14. Feb 11, 2008
  15. Feb 06, 2008
  16. Feb 05, 2008
  17. Feb 04, 2008
  18. Feb 02, 2008
  19. Jan 26, 2008
  20. Jan 25, 2008
  21. Jan 12, 2008
  22. Jan 09, 2008
  23. Dec 30, 2007
  24. Dec 29, 2007
  25. Dec 18, 2007
  26. Dec 17, 2007
  27. Dec 13, 2007
  28. Dec 12, 2007
    • Ted Kremenek's avatar
      TargetInfo no longer includes a reference to SourceManager. · 1daa3cfb
      Ted Kremenek authored
      Moved all clients of Diagnostics to use FullSourceLoc instead of SourceLocation.
      Added many utility methods to FullSourceLoc to provide shorthand for:
      
          FullLoc.getManager().someMethod(FullLoc.getLocation());
          
      instead we have:
      
          FullLoc.someMethod();
          
      Modified TextDiagnostics (and related classes) to use this short-hand.
      
      llvm-svn: 44957
      1daa3cfb
  29. Dec 11, 2007
    • Ted Kremenek's avatar
      Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now · d4e5fbac
      Ted Kremenek authored
      SourceManager is passed by reference, allowing the SourceManager to be
      associated with a specific translation unit, and not the entire execution
      of the driver.
      
      Modified all users of Diagnostics to comply with this new interface.
      
      Integrated SourceManager as a member variable of TargetInfo. TargetInfo will
      eventually be associated with a single translation unit (just like
      SourceManager).
      
      Made the SourceManager reference in ASTContext private. Provided accessor
      getSourceManager() for clients to use instead. Modified clients to comply with
      new interface.
      
      llvm-svn: 44878
      d4e5fbac
    • Chris Lattner's avatar
      Reimplement support for strings that initialize global inits now that · 11fbda2b
      Chris Lattner authored
      the types are right in sema.  Thanks Steve.
      
      llvm-svn: 44834
      11fbda2b
  30. Dec 10, 2007
Loading