Skip to content
  1. Jun 28, 2008
  2. Jun 08, 2008
  3. Jun 05, 2008
  4. Jun 04, 2008
  5. Jun 03, 2008
  6. Jun 01, 2008
  7. May 30, 2008
  8. May 29, 2008
  9. May 27, 2008
  10. May 20, 2008
  11. May 18, 2008
  12. May 16, 2008
    • Eli Friedman's avatar
      Sema-based fix for PR2334. The issue is that even if the two sides of · 928ab4d5
      Eli Friedman authored
      the condidtional have compatible types, they are not necessarily the 
      same type.  Therefore, we cast to the composite type.  As a hack, for 
      the moment we assume that the composite type is the type of the 
      left-hand expression; this isn't correct, but it's good enough for most 
      purposes.
      
      llvm-svn: 51202
      928ab4d5
  13. May 14, 2008
  14. May 13, 2008
  15. May 12, 2008
  16. May 09, 2008
  17. Apr 27, 2008
    • Argyrios Kyrtzidis's avatar
      Parsing of namespaces: · 08114898
      Argyrios Kyrtzidis authored
      -NamespaceDecl for the AST
      -Checks for name clashes between namespaces and tag/normal declarations.
      
      This commit doesn't implement proper name lookup for namespaces.
      
      llvm-svn: 50321
      08114898
  18. Apr 19, 2008
  19. Apr 10, 2008
  20. Apr 08, 2008
  21. Apr 07, 2008
  22. Apr 04, 2008
  23. Apr 03, 2008
  24. Apr 02, 2008
    • Chris Lattner's avatar
      simplify some code by using PointerLikeType. · 182f660d
      Chris Lattner authored
      llvm-svn: 49101
      182f660d
    • Steve Naroff's avatar
      · 2fc93f5c
      Steve Naroff authored
      Two changes to Sema::LookupDecl() interface. 
      (1) Remove IdLoc (it's never used). 
      (2) Add a bool to enable/disable lazy builtin creaation (defaults to true).
      
      This enables us to use LookupDecl() in Sema::isTypeName(), which is also part of this commit.
      
      To make this work, I changed isTypeName() to be a non-const member function. I'm not happy with this, however I fiddled with making LookupDecl() and friends const and it got ugly pretty quickly. We can certainly add it back if/when someone has time to fiddle with it. For now, I thought this simplification was more important than retaining the const-ness. 
      
      llvm-svn: 49087
      2fc93f5c
    • Chris Lattner's avatar
      Various parts of the standard require something to be an "incomplete or · b3a176da
      Chris Lattner authored
      object type".  Add a predicate that checks exactly this, as it is equivalent
      to checking ot see if the type is *not* a function type, which is faster
      to check.
      
      llvm-svn: 49082
      b3a176da
Loading