Skip to content

Rollup of 8 pull requests #77269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
61d86fa
Check for missing const-stability attributes in `stability`
ecstatic-morse Sep 25, 2020
11bfc60
Change error in `fn_queries` to `delay_span_bug`
ecstatic-morse Sep 25, 2020
76c6f2d
No need to call `is_min_const_fn` for side-effects
ecstatic-morse Sep 25, 2020
6ce178f
Test for missing const-stability attributes
ecstatic-morse Sep 25, 2020
58c232a
reduce overlong line
tshepang Sep 27, 2020
9000710
Add MIPS asm! support
tesuji Sep 16, 2020
895c37a
Add a feature gate for basic function pointer use in `const fn`
ecstatic-morse Sep 24, 2020
2863acb
Remove `rustc_allow_const_fn_ptr`
ecstatic-morse Sep 24, 2020
a9d63ba
Update tests with new feature gate
ecstatic-morse Sep 24, 2020
50fb9f1
Bless tests
ecstatic-morse Sep 24, 2020
16f36db
Mark `min_const_fn_fn_ptr` test as gate test
ecstatic-morse Sep 24, 2020
d9fc5b5
Fix typo in ExpnData documentation
jyn514 Sep 27, 2020
3d4a2e6
Remove duplicate comment
bugadani Sep 27, 2020
e420051
Clean up trivial if let
bugadani Sep 27, 2020
03d8be0
Separate `private_intra_doc_links` and `broken_intra_doc_links` into …
jyn514 Sep 27, 2020
80ffaed
Add documentation for `private_intra_doc_links`
jyn514 Sep 27, 2020
3e3cce4
Rollup merge of #76839 - lzutao:mips-asm, r=Amanieu
jonas-schievink Sep 27, 2020
7483b32
Rollup merge of #77170 - ecstatic-morse:const-fn-ptr, r=oli-obk
jonas-schievink Sep 27, 2020
ed1b685
Rollup merge of #77203 - ecstatic-morse:const-stability-attr-checks, …
jonas-schievink Sep 27, 2020
b9e6b46
Rollup merge of #77249 - jyn514:private-links, r=Manishearth
jonas-schievink Sep 27, 2020
af6ed41
Rollup merge of #77252 - tshepang:overlong, r=jyn514
jonas-schievink Sep 27, 2020
f8a1017
Rollup merge of #77256 - jyn514:typo, r=Aaron1011
jonas-schievink Sep 27, 2020
1e09d5d
Rollup merge of #77262 - bugadani:redundant-comment, r=Dylan-DPC
jonas-schievink Sep 27, 2020
f291942
Rollup merge of #77263 - bugadani:cleanup, r=lcnr
jonas-schievink Sep 27, 2020
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
Prev Previous commit
Next Next commit
Remove duplicate comment
  • Loading branch information
bugadani committed Sep 27, 2020
commit 3d4a2e6bb93ce4d1ffd77be7eaf3e4b752104346
3 changes: 0 additions & 3 deletions compiler/rustc_session/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1103,9 +1103,6 @@ impl Session {
self.used_attrs.lock().is_marked(attr)
}

/// Returns `true` if the attribute's path matches the argument. If it matches, then the
/// attribute is marked as used.

/// Returns `true` if the attribute's path matches the argument. If it
/// matches, then the attribute is marked as used.
///
Expand Down