Home
last modified time | relevance | path

Searched refs:StructAlignment (Results 1 – 2 of 2) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DDataLayout.cpp47 StructAlignment = 0; in StructLayout()
61 StructAlignment = std::max(TyAlign, StructAlignment); in StructLayout()
68 if (StructAlignment == 0) StructAlignment = 1; in StructLayout()
72 if ((StructSize & (StructAlignment-1)) != 0) in StructLayout()
73 StructSize = RoundUpToAlignment(StructSize, StructAlignment); in StructLayout()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DDataLayout.h469 unsigned StructAlignment; variable
477 unsigned getAlignment() const { return StructAlignment; } in getAlignment()