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 @@ -3275,6 +3275,7 @@ class CompartmentReportWriter {
3275
3275
static constexpr uint32_t ImportPermitsLoadStoreCapabilities =
3276
3276
(1UL << 29 );
3277
3277
static constexpr uint32_t ImportPermitsLoadMutable = (1UL << 28 );
3278
+ static constexpr uint32_t ImportPermitsLoadGlobal = (1UL << 27 );
3278
3279
3279
3280
imports.push_back (json::Object{
3280
3281
{" kind" , " MMIO" },
@@ -3285,7 +3286,9 @@ class CompartmentReportWriter {
3285
3286
{" permits_load_store_capabilities" ,
3286
3287
(entry.length & ImportPermitsLoadStoreCapabilities) != 0 },
3287
3288
{" permits_load_mutable" ,
3288
- (entry.length & ImportPermitsLoadMutable) != 0 }});
3289
+ (entry.length & ImportPermitsLoadMutable) != 0 },
3290
+ {" permits_load_global" ,
3291
+ (entry.length & ImportPermitsLoadGlobal) != 0 }});
3289
3292
}
3290
3293
continue ;
3291
3294
}
You can’t perform that action at this time.
0 commit comments