Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7cdcdb5
Update reference of rlibc crate to compiler-builtins crate
king6cong Jan 2, 2019
5581207
Remove outdated comment
king6cong Jan 9, 2019
87f5a98
Use `to_ne_bytes` for converting IPv4Address to octets
JakubOnderka Jan 18, 2019
b4d3c87
Tiny improvement to docs for `core::convert`.
icefoxen Jan 26, 2019
4deb595
display sugared return types for async functions
euclio Feb 5, 2019
1d05f81
Add #[must_use] message to Fn* traits
taiki-e Feb 7, 2019
541503a
std::sys::unix::stdio: explain why we do into_raw
RalfJung Feb 8, 2019
b962ecc
Cleanup JS a bit
GuillaumeGomez Feb 8, 2019
66adf52
miri: give non-generic functions a stable address
RalfJung Feb 9, 2019
a01efbc
operand-to-place copies should never be overlapping
RalfJung Feb 9, 2019
3a3691f
when there are multiple filenames, print what got interpreted as 2nd …
RalfJung Feb 10, 2019
adb3300
rpath computation: explain why we pop()
RalfJung Feb 10, 2019
55f90c7
Fix failing tidy (line endings on Windows)
petrochenkov Feb 10, 2019
eaf81c2
miri value visitor: use in macro
RalfJung Feb 10, 2019
a4c775d
Rollup merge of #57259 - king6cong:master, r=alexcrichton
Mark-Simulacrum Feb 10, 2019
039958b
Rollup merge of #57740 - JakubOnderka:ipv4addr-to_ne_bytes, r=scottmcm
Mark-Simulacrum Feb 10, 2019
4164064
Rollup merge of #57926 - icefoxen:test-doc-pr, r=frewsxcv
Mark-Simulacrum Feb 10, 2019
e830e0f
Rollup merge of #58203 - euclio:rustdoc-async, r=GuillaumeGomez
Mark-Simulacrum Feb 10, 2019
4cfd0bb
Rollup merge of #58262 - taiki-e:must_use, r=estebank
Mark-Simulacrum Feb 10, 2019
8bdd01f
Rollup merge of #58295 - RalfJung:stdio, r=alexcrichton
Mark-Simulacrum Feb 10, 2019
a80aef5
Rollup merge of #58297 - GuillaumeGomez:cleanup-js, r=QuietMisdreavus
Mark-Simulacrum Feb 10, 2019
f4e8926
Rollup merge of #58324 - RalfJung:fn-ptr-eq, r=oli-obk
Mark-Simulacrum Feb 10, 2019
3c2b171
Rollup merge of #58332 - RalfJung:miri-copy-nonoverlapping, r=oli-obk
Mark-Simulacrum Feb 10, 2019
10e3e3c
Rollup merge of #58345 - RalfJung:2nd-filename, r=matthewjasper
Mark-Simulacrum Feb 10, 2019
74e450c
Rollup merge of #58346 - RalfJung:rpath-pop, r=Mark-Simulacrum
Mark-Simulacrum Feb 10, 2019
5b74980
Rollup merge of #58350 - petrochenkov:embed, r=frewsxcv
Mark-Simulacrum Feb 10, 2019
67011ac
Rollup merge of #58352 - RalfJung:macro, r=oli-obk
Mark-Simulacrum Feb 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
Prev Previous commit
Next Next commit
when there are multiple filenames, print what got interpreted as 2nd …
…filename
  • Loading branch information
RalfJung committed Feb 10, 2019
commit 3a3691f1878bf3727585c982526c9db5a79c746c
10 changes: 9 additions & 1 deletion src/librustc_driver/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,15 @@ impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
early_error(sopts.error_format, "no input filename given");
}
1 => panic!("make_input should have provided valid inputs"),
_ => early_error(sopts.error_format, "multiple input filenames provided"),
_ =>
early_error(
sopts.error_format,
&format!(
"multiple input filenames provided (first two filenames are `{}` and `{}`)",
matches.free[0],
matches.free[1],
),
)
}
}

Expand Down