Skip to content
  1. Nov 10, 2008
  2. Nov 08, 2008
  3. Nov 07, 2008
  4. Nov 06, 2008
  5. Nov 05, 2008
  6. Nov 04, 2008
  7. Nov 03, 2008
  8. Oct 31, 2008
  9. Oct 29, 2008
  10. Oct 27, 2008
    • Douglas Gregor's avatar
      Refactor the expression class hierarchy for casts. Most importantly: · e200adc5
      Douglas Gregor authored
        - CastExpr is the root of all casts
        - ImplicitCastExpr is (still) used for all explicit casts
        - ExplicitCastExpr is now the root of all *explicit* casts
        - ExplicitCCastExpr (new name needed!?) is a C-style cast in C or C++
        - CXXFunctionalCastExpr inherits from ExplicitCastExpr
        - CXXNamedCastExpr inherits from ExplicitCastExpr and is the root of all
          of the C++ named cast expression types (static_cast, dynamic_cast, etc.)
        - Added classes CXXStaticCastExpr, CXXDynamicCastExpr, 
          CXXReinterpretCastExpr, and CXXConstCastExpr to 
      
      Also, fixed returned-stack-addr.cpp, which broke once when we fixed
      reinterpret_cast to diagnose double->int* conversions and again when
      we eliminated implicit conversions to reference types. The fix is in
      both testcase and SemaChecking.cpp.
      
      Most of this patch is simply support for the renaming. There's very
      little actual change in semantics.
      
      llvm-svn: 58264
      e200adc5
    • Sebastian Redl's avatar
      Fix some invalid casts that are detected by Sema now or soon. · 344fc3db
      Sebastian Redl authored
      llvm-svn: 58252
      344fc3db
    • Douglas Gregor's avatar
      When destroying a translation unit, deallocate its owned declarations in... · 89ebcb9d
      Douglas Gregor authored
      When destroying a translation unit, deallocate its owned declarations in reverse order, because there may be dependencies among the declarations.
      
      llvm-svn: 58244
      89ebcb9d
  11. Oct 25, 2008
  12. Oct 24, 2008
Loading