forked from M-Labs/nac3
core: Fix ndarray_eye not preserving signness of offset
This commit is contained in:
parent
3292aed099
commit
cccd8f2d00
|
@ -635,7 +635,7 @@ fn call_ndarray_eye_impl<'ctx>(
|
||||||
let col_with_offset = ctx.builder
|
let col_with_offset = ctx.builder
|
||||||
.build_int_add(
|
.build_int_add(
|
||||||
col,
|
col,
|
||||||
ctx.builder.build_int_z_extend_or_bit_cast(offset, llvm_usize, "").unwrap(),
|
ctx.builder.build_int_s_extend_or_bit_cast(offset, llvm_usize, "").unwrap(),
|
||||||
"",
|
"",
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
Loading…
Reference in New Issue