about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Copeland <chris@chrisnc.net>2023-07-17 22:18:29 -0700
committerChris Copeland <chris@chrisnc.net>2023-07-23 20:19:26 -0700
commitef8994827e4075e3b0d69b71f96fe07cf3d0f881 (patch)
treec4368a950c83dbd9a44d903cfce80ab305b9a6f4
parenta8f1b72f08018127a6270009ae36957e5dfd2a97 (diff)
downloadrust-ef8994827e4075e3b0d69b71f96fe07cf3d0f881.tar.gz
rust-ef8994827e4075e3b0d69b71f96fe07cf3d0f881.zip
Remove redundant `c_enum_min_bits` option from the thumbv4t-none-eabi target.
This option is the same as the `thumb_base` defaults used by this target.
-rw-r--r--compiler/rustc_target/src/spec/thumbv4t_none_eabi.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_target/src/spec/thumbv4t_none_eabi.rs b/compiler/rustc_target/src/spec/thumbv4t_none_eabi.rs
index 9c59bb9114e..88a76f49acd 100644
--- a/compiler/rustc_target/src/spec/thumbv4t_none_eabi.rs
+++ b/compiler/rustc_target/src/spec/thumbv4t_none_eabi.rs
@@ -45,8 +45,6 @@ pub fn target() -> Target {
             relocation_model: RelocModel::Static,
             // suggested from thumb_base, rust-lang/rust#44993.
             emit_debug_gdb_scripts: false,
-            // suggested from thumb_base, with no-os gcc/clang use 8-bit enums
-            c_enum_min_bits: Some(8),
             frame_pointer: FramePointer::MayOmit,
 
             main_needs_argc_argv: false,