diff options
Diffstat (limited to 'src/processor/cfi_frame_info.cc')
-rw-r--r-- | src/processor/cfi_frame_info.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/processor/cfi_frame_info.cc b/src/processor/cfi_frame_info.cc index d8394619..881a2a7a 100644 --- a/src/processor/cfi_frame_info.cc +++ b/src/processor/cfi_frame_info.cc @@ -88,14 +88,14 @@ bool CFIFrameInfo::FindCallerRegs(const RegisterValueMap<V> ®isters, } // Explicit instantiations for 32-bit and 64-bit architectures. -template bool CFIFrameInfo::FindCallerRegs<u_int32_t>( - const RegisterValueMap<u_int32_t> ®isters, +template bool CFIFrameInfo::FindCallerRegs<uint32_t>( + const RegisterValueMap<uint32_t> ®isters, const MemoryRegion &memory, - RegisterValueMap<u_int32_t> *caller_registers) const; -template bool CFIFrameInfo::FindCallerRegs<u_int64_t>( - const RegisterValueMap<u_int64_t> ®isters, + RegisterValueMap<uint32_t> *caller_registers) const; +template bool CFIFrameInfo::FindCallerRegs<uint64_t>( + const RegisterValueMap<uint64_t> ®isters, const MemoryRegion &memory, - RegisterValueMap<u_int64_t> *caller_registers) const; + RegisterValueMap<uint64_t> *caller_registers) const; string CFIFrameInfo::Serialize() const { std::ostringstream stream; |