diff options
| author | Matthew Maurer <mmaurer@google.com> | 2024-03-15 19:45:46 +0000 | 
|---|---|---|
| committer | Matthew Maurer <mmaurer@google.com> | 2024-03-23 18:30:39 +0000 | 
| commit | 7967915c7b456d59fd963260822d3cf583969948 (patch) | |
| tree | 7302ce9b204ea9a7f9803f31779ee4f75cc42ada /compiler/rustc_codegen_gcc/src/asm.rs | |
| parent | 020bbe46bdf613c0b8211984eaa8e5fe97d6c92d (diff) | |
| download | rust-7967915c7b456d59fd963260822d3cf583969948.tar.gz rust-7967915c7b456d59fd963260822d3cf583969948.zip | |
CFI: Use Instance at callsites
We already use `Instance` at declaration sites when available to glean additional information about possible abstractions of the type in use. This does the same when possible at callsites as well. The primary purpose of this change is to allow CFI to alter how it generates type information for indirect calls through `Virtual` instances.
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/asm.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/asm.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_codegen_gcc/src/asm.rs b/compiler/rustc_codegen_gcc/src/asm.rs index 9b679019e96..06b14a1f118 100644 --- a/compiler/rustc_codegen_gcc/src/asm.rs +++ b/compiler/rustc_codegen_gcc/src/asm.rs @@ -541,7 +541,7 @@ impl<'a, 'gcc, 'tcx> AsmBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> { let builtin_unreachable: RValue<'gcc> = unsafe { std::mem::transmute(builtin_unreachable) }; - self.call(self.type_void(), None, None, builtin_unreachable, &[], None); + self.call(self.type_void(), None, None, builtin_unreachable, &[], None, None); } // Write results to outputs. | 
