Update FIXME numbers

This commit is contained in:
Tim Chevalier 2012-10-11 16:15:12 -07:00
parent 3764ec7025
commit 6986acb340
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ fn classify(e: @expr,
classify(base, def_map, tcx)
}
// FIXME: #1272, we can probably do something CCI-ish
// FIXME: (#3728) we can probably do something CCI-ish
// surrounding nonlocal constants. But we don't yet.
ast::expr_path(_) => {
match def_map.find(e.id) {

View File

@ -632,7 +632,7 @@ fn cast_shift_rhs(op: ast::binop,
if lhs_sz < rhs_sz {
trunc(rhs, lhs_llty)
} else if lhs_sz > rhs_sz {
// FIXME (See discussion at #1570): If shifting by negative
// FIXME (#1877: If shifting by negative
// values becomes not undefined then this is wrong.
zext(rhs, lhs_llty)
} else {