Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [CodeGen] use nsw negation for builtin abs | Sanjay Patel | 2018-05-22 | 1 | -3/+3 |
| | | | | | | | | | | | | | The clang builtins have the same semantics as the stdlib functions. The stdlib functions are defined in section 7.20.6.1 of the C standard with: "If the result cannot be represented, the behavior is undefined." That lets us mark the negation with 'nsw' because "sub i32 0, INT_MIN" would be UB/poison. Differential Revision: https://reviews.llvm.org/D47202 llvm-svn: 333038 | ||||
* | [CodeGen] produce the LLVM canonical form of abs | Sanjay Patel | 2018-05-22 | 1 | -6/+6 |
| | | | | | | | | We chose the 'slt' form as canonical in IR with: rL332819 ...so we should generate that form directly for efficiency. llvm-svn: 332989 | ||||
* | [CodeGen] add tests for abs builtins; NFC | Sanjay Patel | 2018-05-22 | 1 | -0/+29 |
llvm-svn: 332988 |