Skip to content
  1. Jun 29, 2010
  2. Jun 28, 2010
  3. Jun 25, 2010
  4. Jun 24, 2010
  5. Jun 23, 2010
  6. Jun 22, 2010
    • Argyrios Kyrtzidis's avatar
      Make it easier to read/write the template part of FunctionDecl. · cb6f3468
      Argyrios Kyrtzidis authored
      Introduce:
      -FunctionDecl::getTemplatedKind() which returns an enum signifying what kind of templated
        FunctionDecl it is.
      -An overload of FunctionDecl::setFunctionTemplateSpecialization() which accepts arrays of
        TemplateArguments and TemplateArgumentLocs
      -A constructor to TemplateArgumentList which accepts an array of TemplateArguments.
      
      llvm-svn: 106532
      cb6f3468
    • Chris Lattner's avatar
      implement support for -finstrument-functions, patch by Nelson · 3c77a355
      Chris Lattner authored
      Elhage!
      
      llvm-svn: 106507
      3c77a355
    • Douglas Gregor's avatar
      Alter the internal representation of the condition variable in · 27b98eae
      Douglas Gregor authored
      if/while/switch/for statements to ensure that walking the children of
      these statements actually works. Previously, we stored the condition
      variable as a VarDecl. However, StmtIterator isn't able to walk from a
      VarDecl to a set of statements, and would (in some circumstances) walk
      beyond the end of the list of statements, cause Bad Behavior.
      
      In this change, we've gone back to representing the condition
      variables as DeclStmts. While not as memory-efficient as VarDecls, it
      greatly simplifies iteration over the children. 
      
      Fixes the remainder of <rdar://problem/8104754>.
      
      llvm-svn: 106504
      27b98eae
  7. Jun 21, 2010
  8. Jun 19, 2010
  9. Jun 18, 2010
  10. Jun 17, 2010
  11. Jun 16, 2010
  12. Jun 15, 2010
  13. Jun 14, 2010
    • Chris Lattner's avatar
      Fix: · 48eb14dd
      Chris Lattner authored
      Decl.cpp:716:28: warning: initialization of pointer of type 'clang::VarDecl *' from literal 'false' [-Wbool-conversions]
        VarDecl *LastTentative = false;
                                 ^
      RewriteRope.cpp:535:12: warning: initialization of pointer of type '<anonymous>::RopePieceBTreeNode *' from literal 'false'
            [-Wbool-conversions]
          return false;
                 ^
      
      llvm-svn: 105946
      48eb14dd
  14. Jun 13, 2010
Loading