Searched defs:isTruncatingStore (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1656 assert(isTruncatingStore() == isTrunc && "isTrunc encoding error!");
1662 /// isTruncatingStore - Return true if the op does a truncation before store.
1665 bool isTruncatingStore() const { return SubclassData & 1; } function in class:llvm::SDNode::StoreSDNode
1832 return St && !St->isTruncatingStore() &&
1839 return isa<StoreSDNode>(N) && !cast<StoreSDNode>(N)->isTruncatingStore();
1845 return isa<StoreSDNode>(N) && cast<StoreSDNode>(N)->isTruncatingStore();

Completed in 77 milliseconds