Lines Matching refs:CodeModel
140 static CodeModel::Model
141 getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM,
144 if (*CM == CodeModel::Tiny)
145 report_fatal_error("Target does not support the tiny CodeModel", false);
146 if (*CM == CodeModel::Kernel)
147 report_fatal_error("Target does not support the kernel CodeModel", false);
151 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
152 return CodeModel::Small;
159 std::optional<CodeModel::Model> CM,