summaryrefslogtreecommitdiff
path: root/dev-lang/rust/files/1.49.0-llvm-ver-display.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/rust/files/1.49.0-llvm-ver-display.patch')
-rw-r--r--dev-lang/rust/files/1.49.0-llvm-ver-display.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-lang/rust/files/1.49.0-llvm-ver-display.patch b/dev-lang/rust/files/1.49.0-llvm-ver-display.patch
deleted file mode 100644
index e2b6396b5eb8..000000000000
--- a/dev-lang/rust/files/1.49.0-llvm-ver-display.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 64c1b0d614949f405d8b4498a3b2ea59d9ec230e Mon Sep 17 00:00:00 2001
-From: bjorn3 <bjorn3@users.noreply.github.com>
-Date: Wed, 13 Jan 2021 12:15:42 +0100
-Subject: [PATCH] Fix -Cpasses=list and llvm version print with -vV
-
----
- compiler/rustc_driver/src/lib.rs | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs
-index f434673c39e10..c668c94bb08c4 100644
---- a/compiler/rustc_driver/src/lib.rs
-+++ b/compiler/rustc_driver/src/lib.rs
-@@ -808,7 +808,7 @@ pub fn version(binary: &str, matches: &getopts::Matches) {
- println!("commit-date: {}", unw(util::commit_date_str()));
- println!("host: {}", config::host_triple());
- println!("release: {}", unw(util::release_str()));
-- if cfg!(llvm) {
-+ if cfg!(feature = "llvm") {
- get_builtin_codegen_backend("llvm")().print_version();
- }
- }
-@@ -1096,7 +1096,7 @@ pub fn handle_options(args: &[String]) -> Option<getopts::Matches> {
- }
-
- if cg_flags.iter().any(|x| *x == "passes=list") {
-- if cfg!(llvm) {
-+ if cfg!(feature = "llvm") {
- get_builtin_codegen_backend("llvm")().print_passes();
- }
- return None;