aboutsummaryrefslogtreecommitdiff
path: root/src/modules.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.js')
-rw-r--r--src/modules.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules.js b/src/modules.js
index f2c458f5..ed3f1f23 100644
--- a/src/modules.js
+++ b/src/modules.js
@@ -8,6 +8,7 @@ var LLVM = {
'weak_odr', 'externally_visible', 'dllimport', 'dllexport'),
CALLING_CONVENTIONS: set('ccc', 'fastcc', 'coldcc', 'cc10')
};
+LLVM.GLOBAL_MODIFIERS = set(keys(LLVM.LINKAGES).concat(['constant', 'global', 'hidden']));
var Debugging = {
processMetadata: function(lines) {
@@ -96,5 +97,6 @@ var Debugging = {
var Types = {
types: {},
+ needAnalysis: {} // Types noticed during parsing, that need analysis
};