@@ -95,7 +95,7 @@ pub trait LlvmBlockExt<'c>: BuiltinBlockExt<'c> + ArithBlockExt<'c> {
95
95
& self ,
96
96
context : & ' c Context ,
97
97
location : Location < ' c > ,
98
- address : Value < ' c , ' _ > ,
98
+ pointer : Value < ' c , ' _ > ,
99
99
value : Value < ' c , ' _ > ,
100
100
) -> Result < ( ) , Error > ;
101
101
@@ -116,7 +116,7 @@ pub trait LlvmBlockExt<'c>: BuiltinBlockExt<'c> + ArithBlockExt<'c> {
116
116
& self ,
117
117
context : & ' c Context ,
118
118
location : Location < ' c > ,
119
- ptr : Value < ' c , ' _ > ,
119
+ pointer : Value < ' c , ' _ > ,
120
120
indexes : & [ GepIndex < ' c , ' _ > ] ,
121
121
element_type : Type < ' c > ,
122
122
) -> Result < Value < ' c , ' _ > , Error > ;
@@ -289,7 +289,7 @@ impl<'c> LlvmBlockExt<'c> for Block<'c> {
289
289
& self ,
290
290
context : & ' c Context ,
291
291
location : Location < ' c > ,
292
- ptr : Value < ' c , ' _ > ,
292
+ pointer : Value < ' c , ' _ > ,
293
293
indexes : & [ GepIndex < ' c , ' _ > ] ,
294
294
element_type : Type < ' c > ,
295
295
) -> Result < Value < ' c , ' _ > , Error > {
@@ -309,7 +309,7 @@ impl<'c> LlvmBlockExt<'c> for Block<'c> {
309
309
let mut op = ods:: llvm:: getelementptr (
310
310
context,
311
311
pointer ( context, 0 ) ,
312
- ptr ,
312
+ pointer ,
313
313
& dynamic_indices,
314
314
DenseI32ArrayAttribute :: new ( context, & raw_constant_indices) ,
315
315
TypeAttribute :: new ( element_type) ,
0 commit comments