Skip to content
  1. May 08, 2007
  2. May 05, 2007
  3. May 03, 2007
  4. May 02, 2007
  5. May 01, 2007
  6. Apr 17, 2007
  7. Mar 07, 2007
  8. Mar 03, 2007
  9. Feb 06, 2007
  10. Feb 03, 2007
  11. Jan 31, 2007
  12. Dec 19, 2006
  13. Dec 06, 2006
  14. Nov 26, 2006
  15. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  16. Oct 20, 2006
    • Reid Spencer's avatar
      For PR950: · e0fc4dfc
      Reid Spencer authored
      This patch implements the first increment for the Signless Types feature.
      All changes pertain to removing the ConstantSInt and ConstantUInt classes
      in favor of just using ConstantInt.
      
      llvm-svn: 31063
      e0fc4dfc
  17. Aug 29, 2006
  18. Aug 28, 2006
  19. Aug 26, 2006
  20. Aug 24, 2006
  21. Jul 20, 2006
  22. Jul 19, 2006
  23. Jun 07, 2006
  24. Jan 23, 2006
  25. Apr 23, 2005
  26. Apr 22, 2005
  27. Mar 06, 2005
  28. Jan 08, 2005
  29. Nov 22, 2004
  30. Oct 18, 2004
  31. Sep 15, 2004
  32. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  33. May 13, 2004
    • Chris Lattner's avatar
      Fix a nasty bug that caused us to unroll EXTREMELY large loops due to overflow · c12c945c
      Chris Lattner authored
      in the size calculation.
      
      This is not something you want to see:
      Loop Unroll: F[main] Loop %no_exit Loop Size = 2 Trip Count = 2147483648 - UNROLLING!
      
      The problem was that 2*2147483648 == 0.
      
      Now we get:
      Loop Unroll: F[main] Loop %no_exit Loop Size = 2 Trip Count = 2147483648 - TOO LARGE: 4294967296>100
      
      Thanks to some anonymous person playing with the demo page that repeatedly
      caused zion to go into swapping land.  That's one way to ensure you'll get
      a quick bugfix.  :)
      
      Testcase here: Transforms/LoopUnroll/2004-05-13-DontUnrollTooMuch.ll
      
      llvm-svn: 13564
      c12c945c
  34. Apr 20, 2004
  35. Apr 19, 2004
  36. Apr 18, 2004
Loading