about summary refs log tree commit diff
diff options
context:
space:
mode:
authorScott McMurray <scottmcm@users.noreply.github.com>2021-05-18 11:48:00 -0700
committerScott McMurray <scottmcm@users.noreply.github.com>2021-05-18 11:48:00 -0700
commite2edee4da07032de72ac930df1453780dbe73f3b (patch)
treed6ec0fff65eaa06ed38d2a06a4ce8affd4e30194
parent6f7dea74d7699707cfdcf81435c200923d0a5047 (diff)
No matter how trivial the change, tidy always finds a way to complain...
-rw-r--r--src/test/codegen/try_identity.rs4
-rw-r--r--src/test/mir-opt/simplify-arm.rs4
-rw-r--r--src/test/mir-opt/simplify_try.rs4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/test/codegen/try_identity.rs b/src/test/codegen/try_identity.rs
index 0363b9dd19e..3ff77163b9f 100644
--- a/src/test/codegen/try_identity.rs
+++ b/src/test/codegen/try_identity.rs
@@ -9,8 +9,8 @@ type R = Result<u64, i32>;
 
 // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure,
 // so the relevant desugar is copied inline in order to keep the test testing the same thing.
-// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization
-// that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.  See #85133
+// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR
+// optimization that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.
 #[no_mangle]
 pub fn try_identity(x: R) -> R {
 // CHECK: start:
diff --git a/src/test/mir-opt/simplify-arm.rs b/src/test/mir-opt/simplify-arm.rs
index e0c7b95a5ec..f7dcaa13449 100644
--- a/src/test/mir-opt/simplify-arm.rs
+++ b/src/test/mir-opt/simplify-arm.rs
@@ -30,8 +30,8 @@ fn from_error<T, E>(e: E) -> Result<T, E> {
 
 // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure,
 // so the relevant desugar is copied inline in order to keep the test testing the same thing.
-// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization
-// that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.  See #85133
+// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR
+// optimization that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.
 fn id_try(r: Result<u8, i32>) -> Result<u8, i32> {
     let x = match into_result(r) {
         Err(e) => return from_error(From::from(e)),
diff --git a/src/test/mir-opt/simplify_try.rs b/src/test/mir-opt/simplify_try.rs
index 46c239ebe32..15e351e7d50 100644
--- a/src/test/mir-opt/simplify_try.rs
+++ b/src/test/mir-opt/simplify_try.rs
@@ -15,8 +15,8 @@ fn from_error<T, E>(e: E) -> Result<T, E> {
 
 // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure,
 // so the relevant desugar is copied inline in order to keep the test testing the same thing.
-// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization
-// that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.  See #85133
+// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR
+// optimization that picks up the `?` desugaring, as `SimplifyArmIdentity` does not.
 fn try_identity(x: Result<u32, i32>) -> Result<u32, i32> {
     let y = match into_result(x) {
         Err(e) => return from_error(From::from(e)),