(self)
| 330 | return arch_flags |
| 331 | |
| 332 | def get_flags(self): |
| 333 | flags = GnuFCompiler.get_flags(self) |
| 334 | arch_flags = self._universal_flags(self.compiler_f90) |
| 335 | if arch_flags: |
| 336 | flags[:0] = arch_flags |
| 337 | return flags |
| 338 | |
| 339 | def get_flags_linker_so(self): |
| 340 | flags = GnuFCompiler.get_flags_linker_so(self) |
nothing calls this directly
no test coverage detected