File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3192,6 +3192,7 @@ class CompartmentReportWriter {
3192
3192
static constexpr uint32_t ImportPermitsLoadStoreCapabilities =
3193
3193
(1UL << 29 );
3194
3194
static constexpr uint32_t ImportPermitsLoadMutable = (1UL << 28 );
3195
+ static constexpr uint32_t ImportPermitsLoadGlobal = (1UL << 27 );
3195
3196
3196
3197
imports.push_back (json::Object{
3197
3198
{" kind" , " MMIO" },
@@ -3208,7 +3209,9 @@ class CompartmentReportWriter {
3208
3209
{" permits_load_store_capabilities" ,
3209
3210
(entry.length & ImportPermitsLoadStoreCapabilities) != 0 },
3210
3211
{" permits_load_mutable" ,
3211
- (entry.length & ImportPermitsLoadMutable) != 0 }});
3212
+ (entry.length & ImportPermitsLoadMutable) != 0 },
3213
+ {" permits_load_global" ,
3214
+ (entry.length & ImportPermitsLoadGlobal) != 0 }});
3212
3215
}
3213
3216
continue ;
3214
3217
}
You can’t perform that action at this time.
0 commit comments