File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- //! Include a file by concating the verbatim path using `/` instead of `\`
1
+ //! Include a file by concatenating the verbatim path using `/` instead of `\`
2
2
3
3
include ! ( concat!( env!( "VERBATIM_DIR" ) , "/include/include.txt" ) ) ;
4
4
fn main ( ) {
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ fn main() {
9
9
let mut path_ir = PathBuf :: new ( ) ;
10
10
run_in_tmpdir ( || {
11
11
let p = cwd ( ) ;
12
- path_bc = p. join ( "nonexistant_dir_bc " ) ;
13
- path_ir = p. join ( "nonexistant_dir_ir " ) ;
12
+ path_bc = p. join ( "nonexistent_dir_bc " ) ;
13
+ path_ir = p. join ( "nonexistent_dir_ir " ) ;
14
14
rustc ( ) . input ( "-" ) . stdin_buf ( "fn main() {}" ) . out_dir ( & path_bc) . emit ( "llvm-bc" ) . run ( ) ;
15
15
rustc ( ) . input ( "-" ) . stdin_buf ( "fn main() {}" ) . out_dir ( & path_ir) . emit ( "llvm-ir" ) . run ( ) ;
16
16
assert ! ( path_bc. exists( ) ) ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ fn main() {
48
48
let default = & target_spec[ "crt-static-default" ] ;
49
49
50
50
// If the value is `null`, then the default to dynamically link from
51
- // musl_base was not overriden .
51
+ // musl_base was not overridden .
52
52
if default. is_null ( ) {
53
53
continue ;
54
54
}
Original file line number Diff line number Diff line change 1
- // The rlib produced by a no_builtins crate should be explicitely linked
1
+ // The rlib produced by a no_builtins crate should be explicitly linked
2
2
// during compilation, and as a result be present in the linker arguments.
3
3
// See the comments inside this file for more details.
4
4
// See https://github.com/rust-lang/rust/pull/35637
Original file line number Diff line number Diff line change 1
1
// Dynamic libraries on Rust used to export a very high amount of symbols,
2
2
// going as far as filling the output with mangled names and generic function
3
3
// names. After the rework of #38117, this test checks that no mangled Rust symbols
4
- // are exported, and that generics are only shown if explicitely requested.
4
+ // are exported, and that generics are only shown if explicitly requested.
5
5
// See https://github.com/rust-lang/rust/issues/37530
6
6
7
7
use run_make_support:: object:: read:: Object ;
You can’t perform that action at this time.
0 commit comments