Skip to content
Snippets Groups Projects
Commit 1c2adbfc authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

fixed type mismatch on 32-bit machiens

parent 3f3a8b4d
No related branches found
No related tags found
No related merge requests found
Pipeline #4068 passed
......@@ -124,8 +124,8 @@ void MEDS_LoopAnnotation::parse()
header = readInt<decltype(header )>(m_rawInputLine, " FIRSTINST ", true);
preheader = readInt<decltype(preheader)>(m_rawInputLine, " PREHEADER ", true);
all_blocks = readAddrSet<IRDB_SDK::VirtualOffset_t>(m_rawInputLine, " BLOCKLIST ", true);
sub_loops = readAddrSet<uint64_t >(m_rawInputLine, " INNERLOOPS ", false);
all_blocks = readAddrSet<uint64_t>(m_rawInputLine, " BLOCKLIST ", true);
sub_loops = readAddrSet<uint64_t>(m_rawInputLine, " INNERLOOPS ", false);
setValid(); // no additional info recorded for right now.
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment