Home
last modified time | relevance | path

Searched refs:AllowAutoPadding (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h266 bool AllowAutoPadding : 1; variable
358 bool getAllowAutoPadding() const { return AllowAutoPadding; } in getAllowAutoPadding()
359 void setAllowAutoPadding(bool V) { AllowAutoPadding = V; } in setAllowAutoPadding()
H A DMCStreamer.h259 bool AllowAutoPadding = false; variable
323 void setAllowAutoPadding(bool v) { AllowAutoPadding = v; } in setAllowAutoPadding()
324 bool getAllowAutoPadding() const { return AllowAutoPadding; } in getAllowAutoPadding()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp32 LinkerRelaxable(false), AllowAutoPadding(false) {} in MCFragment()