mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-11 23:16:20 +00:00
Fix an assert I accidentally broke to hopefully fix the build bots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a440b0f2dd
commit
fe2da45555
@ -1689,7 +1689,7 @@ class CvtRndSatSDNode : public SDNode {
|
||||
ArrayRef<SDValue> Ops, ISD::CvtCode Code)
|
||||
: SDNode(ISD::CONVERT_RNDSAT, Order, dl, getSDVTList(VT), Ops),
|
||||
CvtCode(Code) {
|
||||
assert(NumOps == 5 && "wrong number of operations");
|
||||
assert(Ops.size() == 5 && "wrong number of operations");
|
||||
}
|
||||
public:
|
||||
ISD::CvtCode getCvtCode() const { return CvtCode; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user