Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | When a variable has a specified asm name, but isn't using the register ↵ | Eli Friedman | 2012-03-15 | 1 | -0/+6 |
| | | | | | | storage class, the asm name doesn't specify a register. PR12244. llvm-svn: 152873 | ||||
* | Add support for passing variables declared to use a xmm register to asm | Rafael Espindola | 2011-01-02 | 1 | -0/+32 |
| | | | | | | statements using the "x" constraint. llvm-svn: 122679 | ||||
* | Add support for declaring register contraints in variables. They are only used | Rafael Espindola | 2010-12-30 | 1 | -0/+27 |
in asm statements: register int foo asm("rdi"); asm("..." : ... "r" (foo) ... We also only accept these variables if the constraint in the asm statement is "r". This fixes most of PR3933. llvm-svn: 122643 |