We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212d830 commit 3d4d8e6Copy full SHA for 3d4d8e6
test-tools/aot-analyzer/src/main.cc
@@ -169,8 +169,8 @@ DumpInfo(AoTFile *aot)
169
aot->GetExectuionMachineName(target_info.e_machine).c_str());
170
printf("Exectuion version: %u\n", target_info.e_version);
171
printf("Exectuion flags: %u\n", target_info.e_flags);
172
- printf("Feature flags: %ld\n", target_info.feature_flags);
173
- printf("Reserved: %ld\n", target_info.reserved);
+ printf("Feature flags: %" PRId64 "\n", target_info.feature_flags);
+ printf("Reserved: %" PRId64 "\n", target_info.reserved);
174
printf("Arch: %s\n", target_info.arch);
175
}
176
0 commit comments