[llvm-commits] [llvm] r116456 - /llvm/trunk/include/llvm/ADT/APInt.h
Chris Lattner
sabre at nondot.org
Wed Oct 13 16:57:00 PDT 2010
Author: lattner
Date: Wed Oct 13 18:57:00 2010
New Revision: 116456
URL: http://llvm.org/viewvc/llvm-project?rev=116456&view=rev
Log:
missed a line :(
Modified:
llvm/trunk/include/llvm/ADT/APInt.h
Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=116456&r1=116455&r2=116456&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Wed Oct 13 18:57:00 2010
@@ -812,7 +812,7 @@
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.
More information about the llvm-commits
mailing list