Skip to content

Commit b2796ec

Browse files
committed
Add issue reference to fixmes
1 parent edc05ae commit b2796ec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/cast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ pub(crate) fn clif_int_or_float_cast(
103103
vec![AbiParam::new(types::I64X2)],
104104
&[from],
105105
)[0];
106-
// FIXME use bitcast instead of store to get from i64x2 to i128
106+
// FIXME(bytecodealliance/wasmtime#6104) use bitcast instead of store to get from i64x2 to i128
107107
let stack_slot = fx.bcx.create_sized_stack_slot(StackSlotData {
108108
kind: StackSlotKind::ExplicitSlot,
109109
size: 16,

src/codegen_i128.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub(crate) fn maybe_codegen<'tcx>(
5353
vec![AbiParam::new(types::I64X2)],
5454
&args,
5555
)[0];
56-
// FIXME use bitcast instead of store to get from i64x2 to i128
56+
// FIXME(bytecodealliance/wasmtime#6104) use bitcast instead of store to get from i64x2 to i128
5757
let ret_place = CPlace::new_stack_slot(fx, lhs.layout());
5858
ret_place.to_ptr().store(fx, ret, MemFlags::trusted());
5959
Some(ret_place.to_cvalue(fx))

src/value_and_place.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ impl<'tcx> CPlace<'tcx> {
517517
| (types::F64, types::I64) => codegen_bitcast(fx, dst_ty, data),
518518
_ if src_ty.is_vector() && dst_ty.is_vector() => codegen_bitcast(fx, dst_ty, data),
519519
_ if src_ty.is_vector() || dst_ty.is_vector() => {
520-
// FIXME do something more efficient for transmutes between vectors and integers.
520+
// FIXME(bytecodealliance/wasmtime#6104) do something more efficient for transmutes between vectors and integers.
521521
let stack_slot = fx.bcx.create_sized_stack_slot(StackSlotData {
522522
kind: StackSlotKind::ExplicitSlot,
523523
// FIXME Don't force the size to a multiple of 16 bytes once Cranelift gets a way to

0 commit comments

Comments
 (0)