Skip to content

Commit 41752b0

Browse files
committed
Update FIXME numbers
1 parent db679a7 commit 41752b0

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

src/rustc/middle/trans/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ fn trans_assign_op(bcx: block,
14651465

14661466
// A user-defined operator method
14671467
if bcx.ccx().maps.method_map.find(expr.id).is_some() {
1468-
// FIXME(#2582) evaluates the receiver twice!!
1468+
// FIXME(#2528) evaluates the receiver twice!!
14691469
let scratch = scratch_datum(bcx, dst_datum.ty, false);
14701470
let bcx = trans_overloaded_op(bcx, expr, dst, ~[src],
14711471
SaveIn(scratch.val), DoAutorefArg);

src/rustc/middle/trans/foreign.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ fn trans_intrinsic(ccx: @crate_ctxt, decl: ValueRef, item: @ast::foreign_item,
909909
let static_ti = get_tydesc(ccx, tp_ty);
910910
glue::lazily_emit_all_tydesc_glue(ccx, static_ti);
911911

912-
// FIXME (#2712): change this to T_ptr(ccx.tydesc_ty) when the
912+
// FIXME (#3727): change this to T_ptr(ccx.tydesc_ty) when the
913913
// core::sys copy of the get_tydesc interface dies off.
914914
let td = PointerCast(bcx, static_ti.tydesc, T_ptr(T_nil()));
915915
Store(bcx, td, fcx.llretptr);

src/rustc/middle/trans/tvec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ fn iter_vec_raw(bcx: block, data_ptr: ValueRef, vec_ty: ty::t,
466466
let unit_ty = ty::sequence_element_type(bcx.tcx(), vec_ty);
467467

468468
// Calculate the last pointer address we want to handle.
469-
// FIXME (#2536): Optimize this when the size of the unit type is
469+
// FIXME (#3729): Optimize this when the size of the unit type is
470470
// statically known to not use pointer casts, which tend to confuse
471471
// LLVM.
472472
let data_end_ptr = pointer_add(bcx, data_ptr, fill);

src/rustc/middle/typeck/check.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2278,8 +2278,7 @@ fn check_enum_variants(ccx: @crate_ctxt,
22782278
let cty = fcx.expr_ty(e);
22792279
let declty = ty::mk_int(ccx.tcx);
22802280
demand::suptype(fcx, e.span, declty, cty);
2281-
// FIXME: issue #1417
2282-
// Also, check_expr (from check_const pass) doesn't guarantee
2281+
// check_expr (from check_const pass) doesn't guarantee
22832282
// that the expression is in an form that eval_const_expr can
22842283
// handle, so we may still get an internal compiler error
22852284
match const_eval::eval_const_expr(ccx.tcx, e) {
@@ -2620,7 +2619,7 @@ fn check_intrinsic_type(ccx: @crate_ctxt, it: @ast::foreign_item) {
26202619
}
26212620
26222621
~"get_tydesc" => {
2623-
// FIXME (#2712): return *intrinsic::tydesc, not *()
2622+
// FIXME (#3730): return *intrinsic::tydesc, not *()
26242623
(1u, ~[], ty::mk_nil_ptr(tcx))
26252624
}
26262625
~"visit_tydesc" => {

src/rustc/middle/typeck/check/method.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ impl LookupContext {
363363
};
364364
let method = &ms[index];
365365

366-
/* FIXME(#3468) we should transform the vstore in accordance
366+
/* FIXME(#3157) we should transform the vstore in accordance
367367
with the self type
368368
369369
match method.self_type {

src/rustdoc/demo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* for testing purposes. It doesn't surve any functional
88
* purpose. This here, for instance, is just some filler text.
99
*
10-
* FIXME (#1654): It would be nice if we could run some automated
10+
* FIXME (#3731): It would be nice if we could run some automated
1111
* tests on this file
1212
*/
1313

src/rustdoc/markdown_pass.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ fn write_markdown(
8484
doc: doc::Doc,
8585
+writer_factory: WriterFactory
8686
) {
87-
// FIXME #2484: There is easy parallelism to be had here but
88-
// we don't want to spawn too many pandoc processes
87+
// There is easy parallelism to be had here, but
88+
// we don't want to spawn too many pandoc processes.
89+
// (See #2484, which is closed.)
8990
do doc.pages.map |page| {
9091
let ctxt = {
9192
w: writer_factory(*page)

0 commit comments

Comments
 (0)