Skip to content

Commit c7813ff

Browse files
committed
llvm: Expose tiny code model to users
1 parent 8858a43 commit c7813ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/doc/rustc/src/codegen-options/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ specification.
2121

2222
Supported values for this option are:
2323

24-
<!-- - `tiny` - Tiny code model. -->
24+
- `tiny` - Tiny code model.
2525
- `small` - Small code model. This is the default model for majority of supported targets.
2626
- `kernel` - Kernel code model.
2727
- `medium` - Medium code model.

src/librustc_codegen_llvm/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ impl CodegenBackend for LlvmCodegenBackend {
208208
}
209209
PrintRequest::CodeModels => {
210210
println!("Available code models:");
211-
for name in &["small", "kernel", "medium", "large"] {
211+
for name in &["tiny", "small", "kernel", "medium", "large"] {
212212
println!(" {}", name);
213213
}
214214
println!();

src/librustc_target/spec/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ impl FromStr for CodeModel {
322322

323323
fn from_str(s: &str) -> Result<CodeModel, ()> {
324324
Ok(match s {
325-
// "tiny" => CodeModel::Tiny, // Not exposed to users right now.
325+
"tiny" => CodeModel::Tiny,
326326
"small" => CodeModel::Small,
327327
"kernel" => CodeModel::Kernel,
328328
"medium" => CodeModel::Medium,

0 commit comments

Comments
 (0)