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 @@ -3261,6 +3261,7 @@ class CompartmentReportWriter {
3261
3261
static constexpr uint32_t ImportPermitsLoadStoreCapabilities =
3262
3262
(1UL << 29 );
3263
3263
static constexpr uint32_t ImportPermitsLoadMutable = (1UL << 28 );
3264
+ static constexpr uint32_t ImportPermitsLoadGlobal = (1UL << 27 );
3264
3265
3265
3266
imports.push_back (json::Object{
3266
3267
{" kind" , " MMIO" },
@@ -3271,7 +3272,9 @@ class CompartmentReportWriter {
3271
3272
{" permits_load_store_capabilities" ,
3272
3273
(entry.length & ImportPermitsLoadStoreCapabilities) != 0 },
3273
3274
{" permits_load_mutable" ,
3274
- (entry.length & ImportPermitsLoadMutable) != 0 }});
3275
+ (entry.length & ImportPermitsLoadMutable) != 0 },
3276
+ {" permits_load_global" ,
3277
+ (entry.length & ImportPermitsLoadGlobal) != 0 }});
3275
3278
}
3276
3279
continue ;
3277
3280
}
You can’t perform that action at this time.
0 commit comments