diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-08-21 18:53:42 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-08-21 18:53:42 -0700 |
commit | 9dea8e570a7ae316fc78e025b5ab32eda549c22e (patch) | |
tree | 8660352ece16f81e6e3bf0ce1fa6300491ac1f77 | |
parent | 5997ffdcab3cc6628ec4aacf6227cacb3ed5b4f7 (diff) |
add x86_fastcallcc
-rw-r--r-- | src/modules.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.js b/src/modules.js index e2509965..f613c20b 100644 --- a/src/modules.js +++ b/src/modules.js @@ -8,7 +8,7 @@ var LLVM = { 'weak_odr', 'externally_visible', 'dllimport', 'dllexport', 'unnamed_addr'), VISIBILITIES: set('default', 'hidden', 'protected'), PARAM_ATTR: set('noalias', 'signext', 'zeroext', 'inreg', 'sret', 'nocapture', 'nest'), - CALLING_CONVENTIONS: set('ccc', 'fastcc', 'coldcc', 'cc10') + CALLING_CONVENTIONS: set('ccc', 'fastcc', 'coldcc', 'cc10', 'x86_fastcallcc') }; LLVM.GLOBAL_MODIFIERS = set(keys(LLVM.LINKAGES).concat(['constant', 'global', 'hidden'])); |