diff options
author | Chris Lattner <sabre@nondot.org> | 2010-10-13 23:57:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-10-13 23:57:00 +0000 |
commit | 08e90f5646e61c3be0eebfa172ec73a8b56abee8 (patch) | |
tree | b9cf829baccea604c1ba6b03ef0e7a5bd4881c3a | |
parent | 0a0a585e6bfc112cb8346b17edecb76969fb5532 (diff) |
missed a line :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116456 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index f5d8c13590..22c54f3f33 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -812,7 +812,7 @@ public: APInt ssub_ov(const APInt &RHS, bool &Overflow) const; APInt sdiv_ov(const APInt &RHS, bool &Overflow) const; APInt smul_ov(const APInt &RHS, bool &Overflow) const; - APInt sshl_ov(unsigned Amt, bool &Overflow); + APInt sshl_ov(unsigned Amt, bool &Overflow) const; /// @returns the bit value at bitPosition /// @brief Array-indexing support. |