| 195 | |
| 196 | |
| 197 | class IntelEM64VisualFCompiler(IntelVisualFCompiler): |
| 198 | compiler_type = 'intelvem' |
| 199 | description = 'Intel Visual Fortran Compiler for 64-bit apps' |
| 200 | |
| 201 | version_match = simple_version_match(start=r'Intel\(R\).*?64,') |
| 202 | |
| 203 | def get_flags_arch(self): |
| 204 | return [] |
| 205 | |
| 206 | |
| 207 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected