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 | edf5e640fa05fbabc7822be42fe71bbcbe1156cc (patch) | |
| tree | 5d1b2d96a17cff1ada808a94d24d9a4d24da306a | |
| parent | 2c819b0358cff980cada4e8fd37212cb19c80534 (diff) | |
| download | bcm5719-llvm-edf5e640fa05fbabc7822be42fe71bbcbe1156cc.tar.gz bcm5719-llvm-edf5e640fa05fbabc7822be42fe71bbcbe1156cc.zip | |
missed a line :(
llvm-svn: 116456
| -rw-r--r-- | llvm/include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index f5d8c13590d..22c54f3f33c 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/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. |

