From: Dan Gohman Date: Wed, 9 Apr 2008 18:31:41 +0000 (+0000) Subject: Add const qualifiers. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cedbacffd67939d8e8f42e5506d458ddc187e575;p=oota-llvm.git Add const qualifiers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49443 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 51da49f09f7..fe688112f10 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -127,13 +127,13 @@ public: /// isLogicalShift - Return true if this is a logical shift left or a logical /// shift right. - inline bool isLogicalShift() { + inline bool isLogicalShift() const { return getOpcode() == Shl || getOpcode() == LShr; } /// isLogicalShift - Return true if this is a logical shift left or a logical /// shift right. - inline bool isArithmeticShift() { + inline bool isArithmeticShift() const { return getOpcode() == AShr; }