about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorrdambrosio <rdambrosio016@gmail.com>2021-11-23 22:30:20 -0500
committerrdambrosio <rdambrosio016@gmail.com>2021-11-23 22:30:20 -0500
commit870b8311c17fb51139d5cc95fc592bcea85ee6ac (patch)
treefd5be0798b16b4abc40f3d7bf31af299ba642713 /compiler/rustc_codegen_gcc
parentde4b242e1e2143f549f25ac5a8f7de9d902ef3b4 (diff)
downloadrust-870b8311c17fb51139d5cc95fc592bcea85ee6ac.tar.gz
rust-870b8311c17fb51139d5cc95fc592bcea85ee6ac.zip
Feat: make cg_ssa get_param borrow the builder mutable
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/abi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/abi.rs b/compiler/rustc_codegen_gcc/src/abi.rs
index ce428c589a4..2bbb199c899 100644
--- a/compiler/rustc_codegen_gcc/src/abi.rs
+++ b/compiler/rustc_codegen_gcc/src/abi.rs
@@ -14,7 +14,7 @@ impl<'a, 'gcc, 'tcx> AbiBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> {
         // TODO(antoyo)
     }
 
-    fn get_param(&self, index: usize) -> Self::Value {
+    fn get_param(&mut self, index: usize) -> Self::Value {
         self.cx.current_func.borrow().expect("current func")
             .get_param(index as i32)
             .to_rvalue()