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
1 changed files with 1 additions and 1 deletions

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: