mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Add explicit qualification for namespace MVT members.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d520559d58
commit
237898ac1f
@ -3048,7 +3048,7 @@ void SDNode::dump(const SelectionDAG *G) const {
|
||||
else
|
||||
cerr << "<null:" << M->getOffset() << ">";
|
||||
} else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
|
||||
cerr << ":" << getValueTypeString(N->getVT());
|
||||
cerr << ":" << MVT::getValueTypeString(N->getVT());
|
||||
} else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
|
||||
bool doExt = true;
|
||||
switch (LD->getExtensionType()) {
|
||||
|
@ -2255,7 +2255,7 @@ static bool isZeroShuffle(SDNode *N) {
|
||||
///
|
||||
static SDOperand getZeroVector(MVT::ValueType VT, SelectionDAG &DAG) {
|
||||
assert(MVT::isVector(VT) && "Expected a vector type");
|
||||
unsigned NumElems = getVectorNumElements(VT);
|
||||
unsigned NumElems = MVT::getVectorNumElements(VT);
|
||||
MVT::ValueType EVT = MVT::getVectorBaseType(VT);
|
||||
bool isFP = MVT::isFloatingPoint(EVT);
|
||||
SDOperand Zero = isFP ? DAG.getConstantFP(0.0, EVT) : DAG.getConstant(0, EVT);
|
||||
|
Loading…
x
Reference in New Issue
Block a user