File tree Expand file tree Collapse file tree 10 files changed +0
-15
lines changed
rustc_codegen_llvm/src/llvm Expand file tree Collapse file tree 10 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 19
19
#![ doc( rust_logo) ]
20
20
#![ feature( rustdoc_internals) ]
21
21
#![ feature( rustc_private) ]
22
- #![ allow( broken_intra_doc_links) ]
23
22
#![ recursion_limit = "256" ]
24
23
#![ warn( rust_2018_idioms) ]
25
24
#![ warn( unused_lifetimes) ]
Original file line number Diff line number Diff line change 1
- #![ allow( non_camel_case_types) ]
2
1
#![ expect( dead_code) ]
3
2
4
3
use libc:: { c_char, c_uint} ;
Original file line number Diff line number Diff line change 3
3
//! This module contains the code for creating and emitting diagnostics.
4
4
5
5
// tidy-alphabetical-start
6
- #![ allow( incomplete_features) ]
7
6
#![ allow( internal_features) ]
8
7
#![ allow( rustc:: diagnostic_outside_of_impl) ]
9
8
#![ allow( rustc:: direct_use_of_rustc_type_ir) ]
Original file line number Diff line number Diff line change 14
14
15
15
// tidy-alphabetical-start
16
16
#![ allow( internal_features) ]
17
- #![ allow( rustc:: diagnostic_outside_of_impl) ]
18
17
#![ allow( rustc:: direct_use_of_rustc_type_ir) ]
19
- #![ allow( rustc:: untranslatable_diagnostic) ]
20
18
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
21
19
#![ doc( rust_logo) ]
22
20
#![ feature( assert_matches) ]
Original file line number Diff line number Diff line change 1
- #![ allow( rustc:: diagnostic_outside_of_impl) ]
2
- #![ allow( rustc:: untranslatable_diagnostic) ]
3
-
4
1
use std:: borrow:: Cow ;
5
2
6
3
use rustc_ast:: util:: unicode:: TEXT_FLOW_CONTROL_CHARS ;
Original file line number Diff line number Diff line change 1
- #![ allow( rustc:: diagnostic_outside_of_impl) ]
2
1
#![ allow( rustc:: untranslatable_diagnostic) ]
3
2
use std:: num:: NonZero ;
4
3
Original file line number Diff line number Diff line change 1
- #![ allow( rustc:: usage_of_ty_tykind) ]
2
-
3
1
/// This higher-order macro declares a list of types which can be allocated by `Arena`.
4
2
///
5
3
/// Specifying the `decode` modifier will add decode impls for `&T` and `&[T]` where `T` is the type
Original file line number Diff line number Diff line change 1
1
//! The main parser interface.
2
2
3
3
// tidy-alphabetical-start
4
- #![ allow( internal_features) ]
5
4
#![ allow( rustc:: diagnostic_outside_of_impl) ]
6
5
#![ allow( rustc:: untranslatable_diagnostic) ]
7
6
#![ feature( assert_matches) ]
Original file line number Diff line number Diff line change 2
2
3
3
// tidy-alphabetical-start
4
4
#![ allow( internal_features) ]
5
- #![ allow( unused_parens) ]
6
5
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
7
6
#![ doc( rust_logo) ]
8
7
#![ feature( min_specialization) ]
Original file line number Diff line number Diff line change 2
2
//! the `clean` types but with some fields removed or stringified to simplify the output and not
3
3
//! expose unstable compiler internals.
4
4
5
- #![ allow( rustc:: default_hash_types) ]
6
-
7
5
use rustc_abi:: ExternAbi ;
8
6
use rustc_ast:: ast;
9
7
use rustc_attr_data_structures:: { self as attrs, DeprecatedSince } ;
You can’t perform that action at this time.
0 commit comments