Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ARM: 'add Rd, pc, #imm' is an alias for 'adr Rd, #imm'. | Jim Grosbach | 2012-09-25 | 1 | -0/+4 |
| | | | | | | rdar://9795790 llvm-svn: 164577 | ||||
* | ARM Assembly syntax support for arithmetic implied dest operand. | Jim Grosbach | 2011-06-27 | 1 | -0/+126 |
When the destination operand is the same as the first source register operand for arithmetic instructions, the destination operand may be omitted. For example, the following two instructions are equivalent: sub r2, r2, #6 sub r2, #6 rdar://9682597 llvm-svn: 133925 |