diff options
| author | Wesley Wiser <wesleywiser@microsoft.com> | 2023-08-25 19:49:10 -0400 | 
|---|---|---|
| committer | Wesley Wiser <wesleywiser@microsoft.com> | 2023-08-25 19:49:10 -0400 | 
| commit | d0b2c4f72760915b2503ca14ce3cad305ce7dc52 (patch) | |
| tree | 9333b961138673ea41118ec098f504ade23956c4 /compiler/rustc_codegen_gcc/src/debuginfo.rs | |
| parent | a8b905cd78c4ddfa4a7a517ada260506af4adfad (diff) | |
| download | rust-d0b2c4f72760915b2503ca14ce3cad305ce7dc52.tar.gz rust-d0b2c4f72760915b2503ca14ce3cad305ce7dc52.zip | |
Revert "Use the same DISubprogram for each instance of the same inlined function within the caller"
This reverts commit 687bffa49375aa00bacc51f5d9adfb84a9453e17. Reverting to resolve ICEs reported on nightly.
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/debuginfo.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/debuginfo.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_codegen_gcc/src/debuginfo.rs b/compiler/rustc_codegen_gcc/src/debuginfo.rs index d1bfd833cd8..a81585d4128 100644 --- a/compiler/rustc_codegen_gcc/src/debuginfo.rs +++ b/compiler/rustc_codegen_gcc/src/debuginfo.rs @@ -55,7 +55,7 @@ impl<'gcc, 'tcx> DebugInfoMethods<'tcx> for CodegenCx<'gcc, 'tcx> { _fn_abi: &FnAbi<'tcx, Ty<'tcx>>, _llfn: RValue<'gcc>, _mir: &mir::Body<'tcx>, - ) -> Option<FunctionDebugContext<'tcx, Self::DIScope, Self::DILocation>> { + ) -> Option<FunctionDebugContext<Self::DIScope, Self::DILocation>> { // TODO(antoyo) None } | 
