From 17c5a67897accb6c60f4717b7fb530665ad8e64a Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 18 Mar 2019 12:48:36 -0700 Subject: [PATCH] Update for review comments. --- src/attributes/codegen.md | 4 +++- src/conditional-compilation.md | 5 ++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/attributes/codegen.md b/src/attributes/codegen.md index 64d4b3e88..a7f79c20d 100644 --- a/src/attributes/codegen.md +++ b/src/attributes/codegen.md @@ -86,7 +86,7 @@ Feature | Implicitly Enables | Description `rdrand` | | [`rdrand`] — Read random number `rdseed` | | [`rdseed`] — Read random seed `sha` | `sse2` | [SHA] — Secure Hash Algorithm -`sse` | | [SSE] — Streaming SIMD Extensions +`sse` | | [SSE] — Streaming SIMD Extensions `sse2` | `sse` | [SSE2] — Streaming SIMD Extensions 2 `sse3` | `sse2` | [SSE3] — Streaming SIMD Extensions 3 `sse4.1` | `sse3` | [SSE4.1] — Streaming SIMD Extensions 4.1 @@ -97,6 +97,8 @@ Feature | Implicitly Enables | Description `xsaveopt` | | [`xsaveopt`] — Save processor extended states optimized `xsaves` | | [`xsaves`] — Save processor extended states supervisor + + [AES]: https://en.wikipedia.org/wiki/AES_instruction_set [AVX]: https://en.wikipedia.org/wiki/Advanced_Vector_Extensions [AVX2]: https://en.wikipedia.org/wiki/Advanced_Vector_Extensions#AVX2 diff --git a/src/conditional-compilation.md b/src/conditional-compilation.md index bb0db93d9..4f402e3ea 100644 --- a/src/conditional-compilation.md +++ b/src/conditional-compilation.md @@ -107,8 +107,7 @@ Example values: See the [`target_feature` attribute] for more details on the available features. An additional feature of `crt-static` is available to the -`target_feature` option to indicate that a static C runtime is available, see -[static and dynamic C runtimes] for more information. +`target_feature` option to indicate that a [static C runtime] is available. ### `target_os` @@ -329,4 +328,4 @@ println!("I'm running on a {} machine!", machine_kind); [attribute]: attributes.html [attributes]: attributes.html [crate type]: linkage.html -[static and dynamic C runtimes]: linkage.html#static-and-dynamic-c-runtimes +[static C runtime]: linkage.html#static-and-dynamic-c-runtimes