Skip to content

Commit

Permalink
Rename "pbc" to "pulley"
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Jul 30, 2024
1 parent 4b7fec1 commit 1e750e8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/targets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ pub enum Architecture {
Mips64(Mips64Architecture),
Msp430,
Nvptx64,
Pbc32,
Pbc64,
Pulley32,
Pulley64,
Powerpc,
Powerpc64,
Powerpc64le,
Expand Down Expand Up @@ -865,8 +865,8 @@ impl Architecture {
| Mips64(Mips64Architecture::Mipsisa64r6el)
| Msp430
| Nvptx64
| Pbc32
| Pbc64
| Pulley32
| Pulley64
| Powerpc64le
| Riscv32(_)
| Riscv64(_)
Expand Down Expand Up @@ -914,7 +914,7 @@ impl Architecture {
| Wasm32
| M68k
| Mips32(_)
| Pbc32
| Pulley32
| Powerpc
| XTensa => Ok(PointerWidth::U32),
AmdGcn
Expand All @@ -926,7 +926,7 @@ impl Architecture {
| X86_64h
| Mips64(_)
| Nvptx64
| Pbc64
| Pulley64
| Powerpc64
| S390x
| Sparc64
Expand Down Expand Up @@ -968,8 +968,8 @@ impl Architecture {
Mips64(mips64) => mips64.into_str(),
Msp430 => Cow::Borrowed("msp430"),
Nvptx64 => Cow::Borrowed("nvptx64"),
Pbc32 => Cow::Borrowed("pbc32"),
Pbc64 => Cow::Borrowed("pbc64"),
Pulley32 => Cow::Borrowed("pulley32"),
Pulley64 => Cow::Borrowed("pulley64"),
Powerpc => Cow::Borrowed("powerpc"),
Powerpc64 => Cow::Borrowed("powerpc64"),
Powerpc64le => Cow::Borrowed("powerpc64le"),
Expand Down Expand Up @@ -1255,8 +1255,8 @@ impl FromStr for Architecture {
"m68k" => M68k,
"msp430" => Msp430,
"nvptx64" => Nvptx64,
"pbc32" => Pbc32,
"pbc64" => Pbc64,
"pulley32" => Pulley32,
"pulley64" => Pulley64,
"powerpc" => Powerpc,
"powerpc64" => Powerpc64,
"powerpc64le" => Powerpc64le,
Expand Down

0 comments on commit 1e750e8

Please sign in to comment.