From 925e3474bd4c3d4db63ce5739c98d30c213fbc88 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 12 Jan 2004 23:18:06 +0000 Subject: [PATCH] Add new method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10809 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instruction.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index cc9a8aec2b1..9de8747361e 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -105,6 +105,12 @@ public: bool isCommutative() const { return isCommutative(getOpcode()); } static bool isCommutative(unsigned op); + /// isRelational - Return true if the instruction is a Set* instruction: + /// + bool isRelational() const { return isRelational(getOpcode()); } + static bool isRelational(unsigned op); + + /// isTrappingInstruction - Return true if the instruction may trap. /// bool isTrapping() const {