mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +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:
@ -1689,7 +1689,7 @@ class CvtRndSatSDNode : public SDNode {
|
|||||||
ArrayRef<SDValue> Ops, ISD::CvtCode Code)
|
ArrayRef<SDValue> Ops, ISD::CvtCode Code)
|
||||||
: SDNode(ISD::CONVERT_RNDSAT, Order, dl, getSDVTList(VT), Ops),
|
: SDNode(ISD::CONVERT_RNDSAT, Order, dl, getSDVTList(VT), Ops),
|
||||||
CvtCode(Code) {
|
CvtCode(Code) {
|
||||||
assert(NumOps == 5 && "wrong number of operations");
|
assert(Ops.size() == 5 && "wrong number of operations");
|
||||||
}
|
}
|
||||||
public:
|
public:
|
||||||
ISD::CvtCode getCvtCode() const { return CvtCode; }
|
ISD::CvtCode getCvtCode() const { return CvtCode; }
|
||||||
|
Reference in New Issue
Block a user