annotate runtime/compiler/ifort.vim @ 20538:9f921ba86d05 v8.2.0823

patch 8.2.0823: Vim9: script reload test is disabled Commit: https://github.com/vim/vim/commit/25e0f5863e9010a75a1ff0d04e8f886403968755 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 25 22:36:50 2020 +0200 patch 8.2.0823: Vim9: script reload test is disabled Problem: Vim9: script reload test is disabled. Solution: Compile a function in the context of the script where it was defined. Set execution stack for compiled function. Add a test that an error is reported for the right file/function.
author Bram Moolenaar <Bram@vim.org>
date Mon, 25 May 2020 22:45:03 +0200
parents d1e4abe8342c
children e1df51f68736
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Compiler: Intel Fortran Compiler
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Maintainer: H Xu <xuhdev@gmail.com>
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Version: 0.1.1
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
4 " Last Change: 2012 Apr 30
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 " Homepage: http://www.vim.org/scripts/script.php?script_id=3497
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " https://bitbucket.org/xuhdev/compiler-ifort.vim
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 " License: Same as Vim
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 if exists('current_compiler')
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 finish
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 endif
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 let current_compiler = 'ifort'
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
13 let s:keepcpo= &cpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
14 set cpo&vim
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 command -nargs=* CompilerSet setlocal <args>
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 endif
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 CompilerSet errorformat=
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 \%A%f(%l):\ %trror\ \#%n:\ %m,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 \%A%f(%l):\ %tarning\ \#%n:\ %m,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 \%-Z%p^,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 \%-G%.%#
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
25
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
26 let &cpo = s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
27 unlet s:keepcpo