Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/IR/
H A DDataLayout.cpp48 StructAlignment = 0; in StructLayout()
65 StructAlignment = std::max(TyAlign, StructAlignment); in StructLayout()
72 if (StructAlignment == 0) StructAlignment = 1; in StructLayout()
76 if ((StructSize & (StructAlignment-1)) != 0) { in StructLayout()
78 StructSize = alignTo(StructSize, StructAlignment); in StructLayout()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDataLayout.h531 unsigned StructAlignment; variable
541 unsigned getAlignment() const { return StructAlignment; } in getAlignment()