Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cranelift/codegen/meta/src/shared/instructions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ pub(crate) fn define(

ig.push(
Inst::new(
"x86_blendv",
"blendv",
r#"
A bitselect-lookalike instruction except with the semantics of
`blendv`-related instructions on x86.
Expand Down
2 changes: 1 addition & 1 deletion cranelift/codegen/src/isa/aarch64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ impl TargetIsa for AArch64Backend {
true
}

fn has_x86_blendv_lowering(&self, _: Type) -> bool {
fn has_blendv_lowering(&self, _: Type) -> bool {
false
}

Expand Down
4 changes: 2 additions & 2 deletions cranelift/codegen/src/isa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ pub trait TargetIsa: fmt::Display + Send + Sync {
/// Returns whether this ISA has instructions for `ceil`, `floor`, etc.
fn has_round(&self) -> bool;

/// Returns whether the CLIF `x86_blendv` instruction is implemented for
/// Returns whether the CLIF `blendv` instruction is implemented for
/// this ISA for the specified type.
fn has_x86_blendv_lowering(&self, ty: Type) -> bool;
fn has_blendv_lowering(&self, ty: Type) -> bool;

/// Returns whether the CLIF `x86_pshufb` instruction is implemented for
/// this ISA.
Expand Down
2 changes: 1 addition & 1 deletion cranelift/codegen/src/isa/pulley_shared/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ where
true
}

fn has_x86_blendv_lowering(&self, _ty: ir::Type) -> bool {
fn has_blendv_lowering(&self, _ty: ir::Type) -> bool {
false
}

Expand Down
2 changes: 1 addition & 1 deletion cranelift/codegen/src/isa/riscv64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ impl TargetIsa for Riscv64Backend {
true
}

fn has_x86_blendv_lowering(&self, _: Type) -> bool {
fn has_blendv_lowering(&self, _: Type) -> bool {
false
}

Expand Down
Loading
Loading