10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2025-01-06 03:18:38 +01:00

forceinline -> inline for builders

Version:1.2.4
This commit is contained in:
Anthony Scemama 2011-10-21 10:21:49 +02:00
parent a37456429c
commit 4a16a6398b

View File

@ -575,7 +575,7 @@ class Variable(object):
if type(line) == Begin_provider:
result = []
if command_line.directives and command_line.inline in ["all","builders"]:
result += [ "!DEC$ ATTRIBUTES FORCEINLINE :: bld_%s"%(same_as) ]
result += [ "!DEC$ ATTRIBUTES INLINE :: bld_%s"%(same_as) ]
result += [ "subroutine bld_%s"%(name) ]
result += build_use([name]+self.needs)
elif type(line) == Cont_provider: