search for: _gfortran_transfer_integer_write

Displaying 1 result from an estimated 1 matches for "_gfortran_transfer_integer_write".

2014 Jan 24
2
[LLVMdev] byval attr for base+range parameters
Hello guys, For single scalar pointer parameter, we have 'byval' to specify the pointee is not changed. But for base+range parameters like: declare void @_gfortran_transfer_integer_write(%struct.__st_parameter_dt*, i8*, i32) (This is the fortran runtime api to 'printf' one integer) The 2nd & 3rd args are used to specify the memory of that integer. I didn't find a comfortable way to specify that it's 'byval'. I need this to make argpromotion work. Right...