Skip to content

Commit 8d4cd2d

Browse files
committed
[MC] Add isFPImm after D96091
1 parent dc6a5e0 commit 8d4cd2d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/include/llvm/MC/MCInst.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class MCOperand {
6161
bool isImm() const { return Kind == kImmediate; }
6262
bool isSFPImm() const { return Kind == kSFPImmediate; }
6363
bool isDFPImm() const { return Kind == kDFPImmediate; }
64+
bool isFPImm() const { return Kind == kDFPImmediate; }
6465
bool isExpr() const { return Kind == kExpr; }
6566
bool isInst() const { return Kind == kInst; }
6667

0 commit comments

Comments
 (0)