diff options
| author | Amanieu d'Antras <amanieu@gmail.com> | 2025-07-08 15:10:51 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-08 15:10:51 +0000 |
| commit | a310bdd0d87163341f9344eff80860cc8519f943 (patch) | |
| tree | 05a5849ce18ed88207f14d23da57a06dfc1e8126 /compiler/rustc_codegen_llvm/src/lib.rs | |
| parent | 061a941adc570ed717dfa2f3508a9038b8300eca (diff) | |
| parent | bdead41b65ed10d6c947b20ddb724f1ae59e2b48 (diff) | |
| download | rust-a310bdd0d87163341f9344eff80860cc8519f943.tar.gz rust-a310bdd0d87163341f9344eff80860cc8519f943.zip | |
Merge pull request #1853 from Kobzol/pull-fixed
Perform the first rustc pull.. for the second time
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs index cdfffbe47bf..63ca51b006d 100644 --- a/compiler/rustc_codegen_llvm/src/lib.rs +++ b/compiler/rustc_codegen_llvm/src/lib.rs @@ -113,7 +113,7 @@ impl ExtraBackendMethods for LlvmCodegenBackend { ) -> ModuleLlvm { let module_llvm = ModuleLlvm::new_metadata(tcx, module_name); let cx = - SimpleCx::new(module_llvm.llmod(), &module_llvm.llcx, tcx.data_layout.pointer_size); + SimpleCx::new(module_llvm.llmod(), &module_llvm.llcx, tcx.data_layout.pointer_size()); unsafe { allocator::codegen(tcx, cx, module_name, kind, alloc_error_handler_kind); } |
