Skip to content
  1. Nov 09, 2006
  2. Nov 08, 2006
  3. Nov 07, 2006
  4. Nov 04, 2006
  5. Nov 03, 2006
  6. 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
    • Chris Lattner's avatar
      Implement the getRegForInlineAsmConstraint method for PPC. With recent · 584a11ae
      Chris Lattner authored
      sdisel changes, this eliminates a ton of copies around common inline asms.
      For example:
      
      int test2(int Y, int X) {
        asm("foo %0, %1" : "=r"(X): "r"(X));
        return X;
      }
      
      now compiles to:
      
      _test2:
              foo r3, r4
              blr
      
      instead of:
      
      _test2:
              mr r2, r4
              foo r2, r2
              mr r3, r2
              blr
      
      GCC produces:
      
      _test2:
              foo r4, r4
              mr r3,r4
              blr
      
      llvm-svn: 31367
      584a11ae
  7. Oct 31, 2006
  8. Oct 30, 2006
  9. Oct 28, 2006
  10. Oct 26, 2006
  11. Oct 24, 2006
  12. Oct 21, 2006
  13. Oct 18, 2006
  14. Oct 17, 2006
  15. Oct 13, 2006
  16. Oct 12, 2006
  17. Oct 11, 2006
Loading