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