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

/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1876 assert(isTruncatingStore() == isTrunc && "isTrunc encoding error!");
1882 /// isTruncatingStore - Return true if the op does a truncation before store.
1885 bool isTruncatingStore() const { return SubclassData & 1; } function in class:StoreSDNode
2050 return St && !St->isTruncatingStore() &&
2057 return isa<StoreSDNode>(N) && !cast<StoreSDNode>(N)->isTruncatingStore();
2063 return isa<StoreSDNode>(N) && cast<StoreSDNode>(N)->isTruncatingStore();

Completed in 96 milliseconds