fix(builder.rs): Apply a variable name change to func param.

This commit is contained in:
tempdragon 2024-02-29 03:03:33 +08:00
parent e18d3c3dfd
commit fba0dae5fe

View File

@ -722,7 +722,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
fn frem_fast(&mut self, lhs: RValue<'gcc>, rhs: RValue<'gcc>) -> RValue<'gcc> {
// NOTE: it seems like we cannot enable fast-mode for a single operation in GCC.
let result = self.frem(lhs, rhs);
set_rval_location(self, i);
set_rval_location(self, result);
result
}