diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-03-04 20:02:28 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-03-04 20:02:28 -0800 |
commit | 201720b8554abef38d2c3269280ea23473f057bb (patch) | |
tree | 6eac05fa93c7369433d7e325e3eba4dac26c6094 /src/modules.js | |
parent | 4d51d0b2762c186a6071df547b772b12961aa368 (diff) |
minor fix in intertyper
Diffstat (limited to 'src/modules.js')
-rw-r--r-- | src/modules.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules.js b/src/modules.js index 4019116f..235683f8 100644 --- a/src/modules.js +++ b/src/modules.js @@ -6,6 +6,7 @@ var LLVM = { LINKAGES: set('private', 'linker_private', 'linker_private_weak', 'linker_private_weak_def_auto', 'internal', 'available_externally', 'linkonce', 'common', 'weak', 'appending', 'extern_weak', 'linkonce_odr', 'weak_odr', 'externally_visible', 'dllimport', 'dllexport'), + PARAM_ATTR: set('noalias', 'signext', 'zeroext', 'inreg', 'byval', 'sret', 'nocapture', 'nest'), CALLING_CONVENTIONS: set('ccc', 'fastcc', 'coldcc', 'cc10') }; LLVM.GLOBAL_MODIFIERS = set(keys(LLVM.LINKAGES).concat(['constant', 'global', 'hidden'])); |