HomeSort by relevance Sort by last modified time
    Searched refs:LayoutMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/IR/
DataLayout.h 140 mutable void *LayoutMap;
180 explicit DataLayout(StringRef LayoutDescription) : LayoutMap(nullptr) {
187 DataLayout(const DataLayout &DL) : LayoutMap(nullptr) { *this = DL; }
  /external/llvm/lib/IR/
DataLayout.cpp 181 LayoutMap = nullptr;
347 DataLayout::DataLayout(const Module *M) : LayoutMap(nullptr) {
490 delete static_cast<StructLayoutMap *>(LayoutMap);
491 LayoutMap = nullptr;
499 if (!LayoutMap)
500 LayoutMap = new StructLayoutMap();
502 StructLayoutMap *STM = static_cast<StructLayoutMap*>(LayoutMap);

Completed in 165 milliseconds