Skip to content

Commit

Permalink
Move metadata info to end
Browse files Browse the repository at this point in the history
  • Loading branch information
will-v-pi committed Nov 21, 2024
1 parent 0cae6b0 commit 69b52ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3206,11 +3206,11 @@ void info_guts(memory_access &raw_access, void *con) {
auto device_info = group("Device Information", (settings.info.show_device || settings.info.all) & raw_access.is_device());
// select them up front to impose order
select_group(program_info);
select_group(pin_info);
select_group(build_info);
for (auto mb : metadata_info) {
select_group(mb);
}
select_group(pin_info);
select_group(build_info);
select_group(device_info);
binary_info_header hdr;
try {
Expand Down

0 comments on commit 69b52ba

Please sign in to comment.