diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-03-26 14:44:01 +0100 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2024-07-02 12:20:30 -0400 |
| commit | f848dbbda5e5666c3fe9eb805f9eababa6244d50 (patch) | |
| tree | b1749a2d937d2463476d23b3447c7cb5e3f570d9 | |
| parent | 8e819fbb5ccd520e39981f42ffd497831d34fecb (diff) | |
| download | rust-f848dbbda5e5666c3fe9eb805f9eababa6244d50.tar.gz rust-f848dbbda5e5666c3fe9eb805f9eababa6244d50.zip | |
Fix non-master build
| -rw-r--r-- | src/builder.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/builder.rs b/src/builder.rs index 4a3b6f678c4..84aa168bcca 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -630,8 +630,9 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> { then: Block<'gcc>, catch: Block<'gcc>, _funclet: Option<&Funclet>, + instance: Option<Instance<'tcx>>, ) -> RValue<'gcc> { - let call_site = self.call(typ, fn_attrs, None, func, args, None); + let call_site = self.call(typ, fn_attrs, None, func, args, None, instance); let condition = self.context.new_rvalue_from_int(self.bool_type, 1); self.llbb().end_with_conditional(self.location, condition, then, catch); if let Some(_fn_abi) = fn_abi { |
