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