diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-06-11 23:47:08 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-06-12 13:38:27 +0300 |
| commit | 17cdd356da598eb46515352277d3664f05c888ee (patch) | |
| tree | c3bfa4d9040a2407737363cbe5ab9d6a99b2c67a /src/librustc_codegen_llvm/back | |
| parent | 244125350880ca2f905928cae4115867eedd301a (diff) | |
| download | rust-17cdd356da598eb46515352277d3664f05c888ee.tar.gz rust-17cdd356da598eb46515352277d3664f05c888ee.zip | |
rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`.
Diffstat (limited to 'src/librustc_codegen_llvm/back')
| -rw-r--r-- | src/librustc_codegen_llvm/back/write.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/back/write.rs b/src/librustc_codegen_llvm/back/write.rs index d8a9f681639..6f3f9d4cb8b 100644 --- a/src/librustc_codegen_llvm/back/write.rs +++ b/src/librustc_codegen_llvm/back/write.rs @@ -89,7 +89,7 @@ pub fn create_informational_target_machine( } pub fn create_target_machine( - tcx: TyCtxt<'_, '_, '_>, + tcx: TyCtxt<'_, '_>, find_features: bool, ) -> &'static mut llvm::TargetMachine { target_machine_factory(&tcx.sess, tcx.backend_optimization_level(LOCAL_CRATE), find_features)() |
