Skip to content

Commit

Permalink
Update for review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Mar 18, 2019
1 parent cf7a4bc commit 17c5a67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/attributes/codegen.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <abbr title="Single Instruction Multiple Data">SIMD</abbr> 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
Expand All @@ -97,6 +97,8 @@ Feature | Implicitly Enables | Description
`xsaveopt` | | [`xsaveopt`] — Save processor extended states optimized
`xsaves` | | [`xsaves`] — Save processor extended states supervisor

<!-- Keep links near each table to make it easier to move and update. -->

[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
Expand Down
5 changes: 2 additions & 3 deletions src/conditional-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down Expand Up @@ -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

0 comments on commit 17c5a67

Please sign in to comment.