about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-11-05 11:54:24 -0500
committerNiko Matsakis <niko@alum.mit.edu>2015-11-05 11:54:24 -0500
commitdcf323e5868309dea6e9be3560149cdaca5f1bb7 (patch)
treecc9e2bcf7a7a483723cf37431e5f781d46e3091f /src
parent3e6b4545f92df0966c687e6a7238f07da874bb49 (diff)
Convert TODO into FIXME
Diffstat (limited to 'src')
-rw-r--r--src/librustc_mir/build/matches/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_mir/build/matches/test.rs b/src/librustc_mir/build/matches/test.rs
index 162ef135dc0..280b5f1d67f 100644
--- a/src/librustc_mir/build/matches/test.rs
+++ b/src/librustc_mir/build/matches/test.rs
@@ -378,7 +378,7 @@ impl<'a,'tcx> Builder<'a,'tcx> {
                     // Did not do an integer equality test (which is always a SwitchInt).
                     // So we learned nothing relevant to this match-pair.
                     //
-                    // TODO we could use TestKind::Range to rule
+                    // FIXME(#29623) we could use TestKind::Range to rule
                     // things out here, in some cases.
                     _ => false,
                 }
@@ -391,7 +391,7 @@ impl<'a,'tcx> Builder<'a,'tcx> {
                 if pattern_test.kind == *test_kind {
                     true
                 } else {
-                    // TODO in all 3 cases, we could sometimes do
+                    // FIXME(#29623) in all 3 cases, we could sometimes do
                     // better here. For example, if we are checking
                     // whether the value is equal to X, and we find
                     // that it is, that (may) imply value is not equal