Skip to content

Commit 075116e

Browse files
Fix non-master build
1 parent 91d3575 commit 075116e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/builder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,8 +630,9 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
630630
then: Block<'gcc>,
631631
catch: Block<'gcc>,
632632
_funclet: Option<&Funclet>,
633+
instance: Option<Instance<'tcx>>,
633634
) -> RValue<'gcc> {
634-
let call_site = self.call(typ, fn_attrs, None, func, args, None);
635+
let call_site = self.call(typ, fn_attrs, None, func, args, None, instance);
635636
let condition = self.context.new_rvalue_from_int(self.bool_type, 1);
636637
self.llbb().end_with_conditional(self.location, condition, then, catch);
637638
if let Some(_fn_abi) = fn_abi {

0 commit comments

Comments
 (0)