Skip to content
  1. Nov 20, 2003
  2. Nov 11, 2003
  3. Nov 10, 2003
  4. Nov 06, 2003
  5. Nov 05, 2003
  6. Nov 04, 2003
  7. Oct 30, 2003
  8. Oct 24, 2003
  9. Oct 23, 2003
  10. Oct 22, 2003
  11. Oct 21, 2003
  12. Oct 20, 2003
  13. Oct 19, 2003
  14. Oct 16, 2003
  15. Oct 15, 2003
  16. Oct 13, 2003
  17. Oct 10, 2003
  18. Oct 08, 2003
    • Alkis Evlogimenos's avatar
      Change MRegisterDesc::AliasSet, TargetInstrDescriptor::ImplicitDefs · 5f1f337d
      Alkis Evlogimenos authored
      and TargetInstrDescriptor::ImplicitUses to always point to a null
      terminated array and never be null. So there is no need to check for
      pointer validity when iterating over those sets. Code that looked
      like:
      
      if (const unsigned* AS = TID.ImplicitDefs) {
        for (int i = 0; AS[i]; ++i) {
          // use AS[i]
        }
      }
      
      was changed to:
      
      for (const unsigned* AS = TID.ImplicitDefs; *AS; ++AS) {
        // use *AS
      }
      
      llvm-svn: 8960
      5f1f337d
  19. Oct 02, 2003
  20. Sep 30, 2003
  21. Sep 24, 2003
Loading