Skip to content

Commit 545e424

Browse files
committed
EXPERIMENT: intrinsic-test: (Bug fix?) Use c_prefix for rust_type
Check whether c_prefix is okay. If this succeeds, this is incorporated as a separate bug fix. If this fails, c_prefix must be removed and replaced with rust_prefix.
1 parent cc2b5e9 commit 545e424

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/intrinsic-test/src/arm/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl IntrinsicTypeDefinition for ArmIntrinsicType {
3535

3636
fn rust_type(&self) -> String {
3737
let rust_prefix = self.0.kind.rust_prefix();
38-
let c_prefix = self.0.kind.rust_prefix();
38+
let c_prefix = self.0.kind.c_prefix();
3939
if self.0.ptr_constant {
4040
self.c_type()
4141
} else if let (Some(bit_len), simd_len, vec_len) =

0 commit comments

Comments
 (0)