aboutsummaryrefslogtreecommitdiff
path: root/src/processor/cfi_frame_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/cfi_frame_info.cc')
-rw-r--r--src/processor/cfi_frame_info.cc12
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> &registers,
}
// Explicit instantiations for 32-bit and 64-bit architectures.
-template bool CFIFrameInfo::FindCallerRegs<u_int32_t>(
- const RegisterValueMap<u_int32_t> &registers,
+template bool CFIFrameInfo::FindCallerRegs<uint32_t>(
+ const RegisterValueMap<uint32_t> &registers,
const MemoryRegion &memory,
- RegisterValueMap<u_int32_t> *caller_registers) const;
-template bool CFIFrameInfo::FindCallerRegs<u_int64_t>(
- const RegisterValueMap<u_int64_t> &registers,
+ RegisterValueMap<uint32_t> *caller_registers) const;
+template bool CFIFrameInfo::FindCallerRegs<uint64_t>(
+ const RegisterValueMap<uint64_t> &registers,
const MemoryRegion &memory,
- RegisterValueMap<u_int64_t> *caller_registers) const;
+ RegisterValueMap<uint64_t> *caller_registers) const;
string CFIFrameInfo::Serialize() const {
std::ostringstream stream;