Skip to content
  1. Apr 20, 2009
  2. Apr 19, 2009
  3. Apr 14, 2009
    • Daniel Dunbar's avatar
      Audit __private_extern__ handling. · 0ca16601
      Daniel Dunbar authored
       - Exposed quite a few Sema issues and a CodeGen crash.
      
       - See FIXMEs in test case, and in SemaDecl.cpp (PR3983).
      
      I'm skeptical that __private_extern__ should actually be a storage
      class value. I think that __private_extern__ basically amounts to
        extern A __attribute__((visibility("hidden")))
      and would be better off handled (a) as that, or (b) with an extra bit
      in the VarDecl.
      
      llvm-svn: 69020
      0ca16601
  4. Apr 13, 2009
  5. Apr 10, 2009
  6. Apr 08, 2009
  7. Apr 02, 2009
  8. Mar 30, 2009
  9. Mar 22, 2009
  10. Mar 21, 2009
  11. Mar 20, 2009
  12. Mar 07, 2009
  13. Mar 06, 2009
  14. Mar 05, 2009
  15. Mar 04, 2009
  16. Feb 28, 2009
  17. Feb 25, 2009
  18. Feb 22, 2009
  19. Feb 20, 2009
  20. Feb 19, 2009
  21. Feb 17, 2009
    • Daniel Dunbar's avatar
      Change EmitConstantExpr to allow failure. · 38ad1e61
      Daniel Dunbar authored
      IRgen no longer relies on isConstantInitializer, instead we just try
      to emit the constant. If that fails then in C we emit an error
      unsupported (this occurs when Sema accepted something that it doesn't
      know how to fold, and IRgen doesn't know how to emit) and in C++ we
      emit a guarded initializer.
      
      This ends up handling a few more cases, because IRgen was actually
      able to emit some of the constants Sema accepts but can't Evaluate().
      For example, PR3398.
      
      llvm-svn: 64780
      38ad1e61
  22. Feb 13, 2009
Loading