Skip to content
  1. Dec 01, 2003
  2. Nov 30, 2003
  3. Nov 20, 2003
  4. Nov 11, 2003
  5. Nov 10, 2003
  6. Nov 06, 2003
  7. Nov 05, 2003
  8. Nov 04, 2003
  9. Oct 30, 2003
  10. Oct 24, 2003
  11. Oct 23, 2003
  12. Oct 22, 2003
  13. Oct 21, 2003
  14. Oct 20, 2003
  15. Oct 19, 2003
  16. Oct 16, 2003
  17. Oct 15, 2003
  18. Oct 13, 2003
  19. Oct 10, 2003
  20. 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
  21. Oct 02, 2003
  22. Sep 30, 2003
Loading