From edf5e640fa05fbabc7822be42fe71bbcbe1156cc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 13 Oct 2010 23:57:00 +0000 Subject: [PATCH] missed a line :( llvm-svn: 116456 --- llvm/include/llvm/ADT/APInt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index f5d8c13590d4..22c54f3f33c6 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.