comparison lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp @ 33:e4204d083e25

LLVM 3.5
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 14:32:10 +0900
parents 95c75e76d11b
children 54457678186b
comparison
equal deleted inserted replaced
1:f783a2dd24b1 33:e4204d083e25
2012 VTs = CurDAG->getVTList(EltVT, MVT::Other, MVT::Glue); 2012 VTs = CurDAG->getVTList(EltVT, MVT::Other, MVT::Glue);
2013 } else if (VecSize == 2) { 2013 } else if (VecSize == 2) {
2014 VTs = CurDAG->getVTList(EltVT, EltVT, MVT::Other, MVT::Glue); 2014 VTs = CurDAG->getVTList(EltVT, EltVT, MVT::Other, MVT::Glue);
2015 } else { 2015 } else {
2016 EVT EVTs[] = { EltVT, EltVT, EltVT, EltVT, MVT::Other, MVT::Glue }; 2016 EVT EVTs[] = { EltVT, EltVT, EltVT, EltVT, MVT::Other, MVT::Glue };
2017 VTs = CurDAG->getVTList(&EVTs[0], 5); 2017 VTs = CurDAG->getVTList(&EVTs[0], array_lengthof(EVTs));
2018 } 2018 }
2019 2019
2020 unsigned OffsetVal = cast<ConstantSDNode>(Offset)->getZExtValue(); 2020 unsigned OffsetVal = cast<ConstantSDNode>(Offset)->getZExtValue();
2021 2021
2022 SmallVector<SDValue, 2> Ops; 2022 SmallVector<SDValue, 2> Ops;