Renamed trapping instruction function to be more consistent with other functions in the file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7448 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner 2003-07-31 05:08:02 +00:00
parent ec127bb352
commit be08bb399a

View File

@ -99,10 +99,10 @@ public:
/// isTrappingInstruction - Return true if the instruction may trap.
///
bool isTrappingInstruction() const {
return isTrappingInstruction(getOpcode());
bool isTrapping() const {
return isTrapping(getOpcode());
}
static bool isTrappingInstruction(unsigned op);
static bool isTrapping(unsigned op);
virtual void print(std::ostream &OS) const;