Skip to content
  1. Jun 24, 2008
  2. Jun 23, 2008
  3. Jun 22, 2008
  4. Jun 21, 2008
  5. Jun 20, 2008
  6. Jun 19, 2008
  7. Jun 18, 2008
  8. Jun 17, 2008
    • Ted Kremenek's avatar
      Fix non-termination bug reported by Thomas Clement! · 3802fedf
      Ted Kremenek authored
      llvm-svn: 52426
      3802fedf
    • Chris Lattner's avatar
      Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. · 5696e7ba
      Chris Lattner authored
      Patch by David Chisnall!
      
      llvm-svn: 52422
      5696e7ba
    • Ted Kremenek's avatar
      Fix more strict-aliasing warnings. · c6501dbc
      Ted Kremenek authored
      Fix indentation of class declarations in ExprCXX.h
      
      llvm-svn: 52380
      c6501dbc
    • Ted Kremenek's avatar
      This patch is motivated by numerous strict-aliasing warnings when compiling · 08e17118
      Ted Kremenek authored
      clang as a Release build.
      
      The big change is that all AST nodes (subclasses of Stmt) whose children are
      Expr* store their children as Stmt* or arrays of Stmt*. This is to remove
      strict-aliasing warnings when using StmtIterator. None of the interfaces of any
      of the classes have changed (except those with arg_iterators, see below), as the
      accessor methods introduce the needed casts (via cast<>). While this extra
      casting may seem cumbersome, it actually adds some important sanity checks
      throughout the codebase, as clients using StmtIterator can potentially overwrite
      children that are expected to be Expr* with Stmt* (that aren't Expr*). The casts
      provide extra sanity checks that are operational in debug builds to catch
      invariant violations such as these.
      
      For classes that have arg_iterators (e.g., CallExpr), the definition of
      arg_iterator has been replaced. Instead of it being Expr**, it is an actual
      class (called ExprIterator) that wraps a Stmt**, and provides the necessary
      operators for iteration. The nice thing about this class is that it also uses
      cast<> to type-checking, which introduces extra sanity checks throughout the
      codebase that are useful for debugging.
      
      A few of the CodeGen functions that use arg_iterator (especially from
      OverloadExpr) have been modified to take begin and end iterators instead of a
      base Expr** and the number of arguments. This matches more with the abstraction
      of iteration. This still needs to be cleaned up a little bit, as clients expect
      that ExprIterator is a RandomAccessIterator (which we may or may not wish to
      allow for efficiency of representation).
      
      This is a fairly large patch. It passes the tests (except CodeGen/bitfield.c,
      which was already broken) on both a Debug and Release build, but it should
      obviously be reviewed.
      
      llvm-svn: 52378
      08e17118
    • Ted Kremenek's avatar
      Silence uninitialized value warning in Release build. · 1c77e8f2
      Ted Kremenek authored
      llvm-svn: 52376
      1c77e8f2
    • Ted Kremenek's avatar
      Silence uninitialized value warning during Release build. · bba87243
      Ted Kremenek authored
      llvm-svn: 52375
      bba87243
  9. Jun 16, 2008
  10. Jun 14, 2008
  11. Jun 12, 2008
  12. Jun 11, 2008
    • Eli Friedman's avatar
      Don't crash if we can't find FileEntry info for a typedef, since one · 61b529f4
      Eli Friedman authored
      isn't guaranteed to exist. This fixes a crash with conflicting typedefs
      coming from stdin.
      
      This also fixes the crash in PR2406, but doesn't completely fix the 
      issue; it appears there's something strange about the physical location 
      for the definition of int64_t in stdlib.h.
      
      llvm-svn: 52209
      61b529f4
  13. Jun 10, 2008
  14. Jun 09, 2008
  15. Jun 08, 2008
Loading