diff options
| author | mdenes | 2013-07-06 23:55:57 +0000 |
|---|---|---|
| committer | mdenes | 2013-07-06 23:55:57 +0000 |
| commit | d135b02a31b0ec84b61726a3d0aa7301b08a48ad (patch) | |
| tree | 64779e6811d76df70a8c07738756f4e825dde031 /kernel/declarations.mli | |
| parent | 931bd73212b0095d8c50e0355ee66faa32bf8db6 (diff) | |
Fixing a bug in the native compiler, introduced by r16363, leading to undefined
variables in the generated code.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16619 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/declarations.mli')
| -rw-r--r-- | kernel/declarations.mli | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/kernel/declarations.mli b/kernel/declarations.mli index 24572da591..43b908e1fc 100644 --- a/kernel/declarations.mli +++ b/kernel/declarations.mli @@ -40,10 +40,12 @@ type constant_def = | Def of Lazyconstr.constr_substituted | OpaqueDef of Lazyconstr.lazy_constr +(** Linking information for the native compiler. The boolean flag indicates if + the term is protected by a lazy tag *) + type native_name = - | Linked of string - | LinkedLazy of string - | LinkedInteractive of string + | Linked of string * bool + | LinkedInteractive of string * bool | NotLinked type constant_body = { |
