Skip to content
  1. Jan 02, 2013
  2. Jan 01, 2013
  3. Dec 30, 2012
  4. Dec 28, 2012
  5. Dec 25, 2012
  6. Dec 24, 2012
  7. Dec 21, 2012
    • Richard Smith's avatar
      Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a... · d82a2ce3
      Richard Smith authored
      Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a value-initialized bool!
      
      llvm-svn: 170837
      d82a2ce3
    • NAKAMURA Takumi's avatar
      Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when... · 3df909d0
      NAKAMURA Takumi authored
      Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member."
      
      It broke stage2.
      
      llvm-svn: 170835
      3df909d0
    • Rafael Espindola's avatar
      Don't eagerly emit a global static merged with a local extern. · 2be6b72c
      Rafael Espindola authored
      When we are visiting the extern declaration of 'i' in
      
      static int i = 99;
      int foo() {
        extern int i;
        return i;
      }
      
      We should not try to handle it as if it was an function static. That is, we
      must consider the written storage class.
      
      Fixing this then exposes that the assert in EmitGlobalVarDeclLValue and the
      if leading to its call are not completely accurate. They were passing before
      because the second decl was marked as having external storage. I changed them
      to check the linkage, which I find easier to understand.
      
      Last but not least, there is something strange going on with cuda and opencl.
      My guess is that the linkage computation for these languages needs to be
      audited, but I didn't want to change that in this patch so I just updated
      the storage classes to keep the current behavior.
      
      Thanks to Reed Kotler for reporting this.
      
      llvm-svn: 170827
      2be6b72c
    • Richard Smith's avatar
      Fix some bugs where we would sometimes use 0, not -1, when emitting a null... · 789ce142
      Richard Smith authored
      Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member.
      
      llvm-svn: 170806
      789ce142
  8. Dec 20, 2012
  9. Dec 19, 2012
  10. Dec 18, 2012
  11. Dec 17, 2012
  12. Dec 15, 2012
  13. Dec 14, 2012
  14. Dec 13, 2012
  15. Dec 12, 2012
    • John McCall's avatar
      Rewrite calls to bitcast unprototyped functions when emitting a definition. · 49954ca0
      John McCall authored
      My variadics patch, r169588, changed these calls to typically be
      bitcasts rather than calls to a supposedly variadic function.
      This totally subverted a hack where we intentionally dropped
      excess arguments from such calls in order to appease the inliner
      and a "warning" from the optimizer.  This patch extends the hack
      to also work with bitcasts, as well as teaching it to rewrite
      invokes.
      
      llvm-svn: 170034
      49954ca0
    • Chad Rosier's avatar
      Marking the objc_autoreleaseReturnValue and objc_retainAutoreleaseReturnValue · 13799b32
      Chad Rosier authored
      call sites as tail calls unconditionally.  While it's theoretically true that
      this is just an optimization, it's an optimization that we very much want to
      happen even at -O0, or else ARC applications become substantially harder to
      debug.  See r169796 for the llvm/fast-isel side of things.
      rdar://12553082
      
      llvm-svn: 169996
      13799b32
Loading