Skip to content
  1. Jun 18, 2010
    • Dan Gohman's avatar
      Give NamedRegionTimer an Enabled flag, allowing all its clients to · 6e681a5f
      Dan Gohman authored
      switch from this:
      
        if (TimePassesIsEnabled) {
          NamedRegionTimer T(Name, GroupName);
          do_something();
        } else {
          do_something(); // duplicate the code, this time without a timer!
        }
      
      to this:
      
        {
          NamedRegionTimer T(Name, GroupName, TimePassesIsEnabled);
          do_something();
        }
      
      llvm-svn: 106285
      6e681a5f
  2. Jun 16, 2010
  3. Jun 11, 2010
  4. Jun 05, 2010
  5. Jun 03, 2010
  6. Jun 02, 2010
  7. Jun 01, 2010
  8. May 28, 2010
  9. May 27, 2010
  10. May 26, 2010
  11. May 25, 2010
  12. May 24, 2010
  13. May 22, 2010
  14. May 21, 2010
  15. May 20, 2010
  16. May 19, 2010
  17. May 14, 2010
  18. May 12, 2010
Loading