Skip to content
  1. Jul 15, 2006
  2. Jun 29, 2006
  3. Jun 15, 2006
  4. Jun 08, 2006
  5. May 12, 2006
  6. May 09, 2006
  7. May 06, 2006
  8. May 05, 2006
  9. May 03, 2006
  10. May 02, 2006
  11. May 01, 2006
  12. Apr 22, 2006
  13. Mar 07, 2006
  14. Mar 03, 2006
  15. Mar 01, 2006
  16. Feb 24, 2006
  17. Feb 23, 2006
  18. Feb 09, 2006
  19. Feb 06, 2006
  20. Feb 05, 2006
  21. Feb 01, 2006
    • Chris Lattner's avatar
      Implement smart printing of inline asm strings, handling variants and · aa23fa9f
      Chris Lattner authored
      substituted operands.  For this testcase:
      
      int %test(int %A, int %B) {
        %C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
        ret int %C
      }
      
      we now emit:
      
      _test:
              or r2, r3, r3
              or r3, r4, r4
              xyz r2, r2, r3  ;; look here
              or r3, r2, r2
              blr
      
      ... note the substituted operands. :)
      
      llvm-svn: 25886
      aa23fa9f
Loading