Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
8afe598
Add big-endian support for AArch64 va_arg
Jan 20, 2021
d53b0a0
Fix ARM and AArch64 calling convention for passing small composite types
Jan 20, 2021
06f14df
Support AArch64 ILP32 in libunwind bindings
Jan 20, 2021
a112c4d
Support AArch64 big-endian and ILP32 in compiletest
Jan 20, 2021
8783d1a
Add big-endian and ILP32 AArch64 targets
Jan 20, 2021
69e6326
Add new aarch64 targets to platform-support.md
Jan 26, 2021
5307230
Bump LLVM submodule
Jan 21, 2021
99eeb13
Remove remnants of the santizer runtime crates from bootstrap
tmiasko Jan 29, 2021
c7f4154
sys: use `process::abort()` instead of `arch::wasm32::unreachable()`
ojeda Jan 29, 2021
15701f7
Add doc aliases for "delete"
sugar700 Jan 31, 2021
071d227
rustbuild: Don't build compiler twice for error-index-generator.
ehuss Jan 31, 2021
4b64bc1
Upgrade Chalk
jackh726 Jan 1, 2021
ee5ea24
Add long error explanation for E0521
jesusprubio Feb 1, 2021
9ef24f9
Update ui tests
jesusprubio Feb 1, 2021
b35d601
Directly use `Option<&[T]>` instead of converting from `Option<&Vec<T…
LingMan Feb 1, 2021
5022ad0
Add UI test for panic/assert in Rust 2021.
m-ou-se Feb 1, 2021
ed1de99
Fix bug with assert!() calling the wrong edition of panic!().
m-ou-se Feb 1, 2021
c3dedd0
Upgrade libc to 0.2.85
Jan 21, 2021
3408c58
Fix AArch64 types in std::os::raw
Amanieu Feb 1, 2021
bad0f28
Improve wording of suggestion about accessing field
hkmatsumoto Feb 2, 2021
07c4eeb
Fix out of date `Scalar` documentation
jacob-hughes Feb 2, 2021
6525671
Add better diagnostic for missing where clause
JulianKnodt Jan 30, 2021
ae3164e
Add .editorconfig
vn971 Jan 22, 2021
a0622d6
Update Chalk
jackh726 Jan 31, 2021
c57889b
Update ui tests (nll)
jesusprubio Feb 2, 2021
f0a3de6
More associated type tests
jackh726 Feb 2, 2021
c1623a2
Rollup merge of #80593 - jackh726:chalk-upgrade, r=nikomatsakis
jackh726 Feb 2, 2021
d91ce83
Rollup merge of #81260 - vn971:restore-editorconfig, r=Mark-Simulacrum
jackh726 Feb 2, 2021
399c0a8
Rollup merge of #81455 - Amanieu:aarch64_ilp32, r=sanxiyn
jackh726 Feb 2, 2021
71792d8
Rollup merge of #81517 - tmiasko:san-crates, r=Mark-Simulacrum
jackh726 Feb 2, 2021
76be6bb
Rollup merge of #81530 - ojeda:sys-use-abort-instead-of-wasm32-unreac…
jackh726 Feb 2, 2021
3aed8b1
Rollup merge of #81544 - JulianKnodt:sat_where, r=lcnr
jackh726 Feb 2, 2021
d3304c8
Rollup merge of #81588 - xfix:delete-doc-alias, r=Mark-Simulacrum
jackh726 Feb 2, 2021
3b9d77c
Rollup merge of #81603 - ehuss:error-index-build, r=Mark-Simulacrum
jackh726 Feb 2, 2021
fd4f4ad
Rollup merge of #81634 - jesusprubio:jesusprubio/add-long-explanation…
jackh726 Feb 2, 2021
86e23cc
Rollup merge of #81636 - LingMan:slice_not_vec, r=petrochenkov
jackh726 Feb 2, 2021
7f2eeb1
Rollup merge of #81647 - m-ou-se:assert-2021-fix, r=petrochenkov
jackh726 Feb 2, 2021
7edb3ad
Rollup merge of #81655 - matsujika:suggest-accessing-field-rewording,…
jackh726 Feb 2, 2021
70d16d5
Rollup merge of #81665 - jacob-hughes:mir_doc_fix, r=estebank
jackh726 Feb 2, 2021
81c64b3
Rollup merge of #81671 - jackh726:atb-tests, r=estebank
jackh726 Feb 2, 2021
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
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

[*.md]
# double whitespace at end of line
# denotes a line break in Markdown
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
2 changes: 2 additions & 0 deletions src/tools/clippy/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ indent_style = space
indent_size = 4

[*.md]
# double whitespace at end of line
# denotes a line break in Markdown
trim_trailing_whitespace = false

[*.yml]
Expand Down