Skip to content

Commit

Permalink
back to old architecture display
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-4 committed Nov 20, 2024
1 parent 0079f73 commit 217a557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/compiler/roc_target/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ pub enum Architecture {
impl std::fmt::Display for Architecture {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let arch_str = match self {
Architecture::Aarch32 => "arm",
Architecture::Aarch64 => "arm64",
Architecture::Aarch32 => "aarch32",
Architecture::Aarch64 => "aarch64",
Architecture::Wasm32 => "wasm32",
Architecture::X86_32 => "x86_32",
Architecture::X86_64 => "x86_64",
Expand Down

0 comments on commit 217a557

Please sign in to comment.