about summary refs log tree commit diff
path: root/compiler/rustc_driver/src
diff options
context:
space:
mode:
authorhyd-dev <yd-huang@outlook.com>2021-03-15 17:57:53 +0800
committerhyd-dev <yd-huang@outlook.com>2021-03-15 18:24:58 +0800
commitd7ab3c77b3259e25e15d77b6939af4ba8d3be4c0 (patch)
tree7c18417d7bfbb0d9454cc6510f9155ef03a66b2b /compiler/rustc_driver/src
parent3963c3da02d17b9c52feaf0e05271db2ec51c29f (diff)
downloadrust-d7ab3c77b3259e25e15d77b6939af4ba8d3be4c0.tar.gz
rust-d7ab3c77b3259e25e15d77b6939af4ba8d3be4c0.zip
Add `rustc_interface::interface::Config::parse_sess_created`
Diffstat (limited to 'compiler/rustc_driver/src')
-rw-r--r--compiler/rustc_driver/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs
index 79bb21b29fc..25a78041c00 100644
--- a/compiler/rustc_driver/src/lib.rs
+++ b/compiler/rustc_driver/src/lib.rs
@@ -215,6 +215,7 @@ fn run_compiler(
             diagnostic_output,
             stderr: None,
             lint_caps: Default::default(),
+            parse_sess_created: None,
             register_lints: None,
             override_queries: None,
             make_codegen_backend: make_codegen_backend.take().unwrap(),
@@ -298,6 +299,7 @@ fn run_compiler(
         diagnostic_output,
         stderr: None,
         lint_caps: Default::default(),
+        parse_sess_created: None,
         register_lints: None,
         override_queries: None,
         make_codegen_backend: make_codegen_backend.unwrap(),