nac3artiq: get_const_obj should no longer make a pointer. Closes #272

rpc-obj-as-param
Sebastien Bourdeauducq 2022-04-27 15:28:58 +08:00
parent a321b13bec
commit 27d509d70e
1 changed files with 1 additions and 7 deletions

View File

@ -115,13 +115,7 @@ impl StaticValue for PythonValue {
&[ctx.ctx.i32_type().const_int(id as u64, false).into()],
false,
));
let global2 = ctx.module.add_global(
struct_type.ptr_type(AddressSpace::Generic),
None,
format!("{}_const2", self.id).as_str(),
);
global2.set_initializer(&global.as_pointer_value());
Ok(global2.as_pointer_value().into())
Ok(global.as_pointer_value().into())
})
.unwrap()
})