Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
515da72
Target::arch can take more than listed options
fintelia Jul 1, 2019
7aaf0de
Add a test for `$crate` inside macro invocation
petrochenkov Jul 3, 2019
4344a90
Pretty-print `$crate` as `crate`/`::my_crate` in tokens
petrochenkov Jul 3, 2019
3997507
Resolve `$crate` in all hygienic contexts for pretty-pringing
petrochenkov Jul 5, 2019
60f1449
Add Iterator::partition_mut() and is_partitioned()
cuviper Jul 1, 2019
cdeec0a
Capitalize example comment
cuviper Jul 1, 2019
cd0ebc4
Rename partition_mut to partition_in_place
cuviper Jul 1, 2019
0492f97
Return the true count from partition_in_place
cuviper Jul 9, 2019
265e3a6
Unit test Iterator::partition_in_place and is_partitioned
cuviper Jul 9, 2019
4cb67c0
Add a test case with `$crate` from other crate
petrochenkov Jul 9, 2019
04304fc
Pass GUIDPreservedSymbols to thinLTOResolvePrevailingInIndex()
nikic Jul 6, 2019
eb33822
Pass type to byval attributes
nikic Jul 6, 2019
b57c499
Translate target features for LLVM 9
nikic Jul 7, 2019
3170b62
Use new feature names in target feature lists
nikic Jul 7, 2019
5324b42
Add function pointer alignment to ARM/Thumb data layout
nikic Jul 7, 2019
8789c9e
Strip function pointer alignment for older LLVM versions
nikic Jul 7, 2019
5c95f5f
Fix float add/mul reduction codegen
nikic Jul 7, 2019
ac56025
Adjust codegen tests for DISPFlagMainSubprogram
nikic Jul 7, 2019
74a39a3
Emit warning when trying to use PGO in conjunction with unwinding on …
EricRahm Jun 14, 2019
4c22e48
Tracking issue 62543 for iter_partition_in_place
cuviper Jul 9, 2019
7171c83
Tracking issue 62544 for iter_is_partitioned
cuviper Jul 9, 2019
3c3e375
Rollup merge of #61853 - EricRahm:use_warning, r=varkor
Centril Jul 10, 2019
b14b20c
Rollup merge of #62278 - cuviper:iter-partition, r=alexcrichton
Centril Jul 10, 2019
1e48be9
Rollup merge of #62283 - fintelia:patch-5, r=Mark-Simulacrum
Centril Jul 10, 2019
fe26fc9
Rollup merge of #62393 - petrochenkov:notto-disu, r=Mark-Simulacrum
Centril Jul 10, 2019
6c0a406
Rollup merge of #62474 - nikic:update-llvm, r=alexcrichton
Centril Jul 10, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Target::arch can take more than listed options
A list of options in a comment like this is almost guaranteed to become out of date. This list is missing "riscv32" and "riscv64" and perhaps other architectures as well.
  • Loading branch information
fintelia authored Jul 1, 2019
commit 515da7249e9420d9afc9b478f06ffb7f2f094954
4 changes: 2 additions & 2 deletions src/librustc_target/spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,8 @@ pub struct Target {
pub target_env: String,
/// Vendor name to use for conditional compilation.
pub target_vendor: String,
/// Architecture to use for ABI considerations. Valid options: "x86",
/// "x86_64", "arm", "aarch64", "mips", "powerpc", and "powerpc64".
/// Architecture to use for ABI considerations. Valid options include: "x86",
/// "x86_64", "arm", "aarch64", "mips", "powerpc", "powerpc64", and others.
pub arch: String,
/// [Data layout](http://llvm.org/docs/LangRef.html#data-layout) to pass to LLVM.
pub data_layout: String,
Expand Down