Home | History | Annotate | Download | only in Scalar

Lines Matching refs:ConstantValue

589   Constant *ConstantValue = nullptr;
593 ConstantExpression(Constant *constantValue)
594 : Expression(ET_Constant), ConstantValue(constantValue) {}
602 Constant *getConstantValue() const { return ConstantValue; }
603 void setConstantValue(Constant *V) { ConstantValue = V; }
607 return ConstantValue == OC.ConstantValue;
612 ConstantValue->getType(), ConstantValue);
622 OS << " constant = " << *ConstantValue;