Fortran 132 character line limit

I am working with some Fortran 90 code originally written for another compiler which does not enforce the 132 character line limit used by the pgi compiler, and as a result has a number of lines which exceed that limit (The lines are function calls which can’t be easily changed to be under the limit without renaming variables present in a large number of locations throughout the file).

Is there a way to bypass the 132 character line limit with the pgfortran compiler?

No. I believe we limit symbol names to 64 characters, so there’s still room for 2 arguments, plus a comma, space, and continuation character on each line. Is that not good enough?