diff options
author | Greg Clayton <gclayton@apple.com> | 2010-07-07 17:07:17 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-07-07 17:07:17 +0000 |
commit | 69b518f6ef738e6f19c00d6e3383c75615ba224e (patch) | |
tree | f9addb58b49310240751ede69eb79cf86aa35504 /lldb/source/Plugins/Process/Utility | |
parent | 72db59664f3b0c039b5807e1eadef08ab3f5cde9 (diff) | |
download | bcm5719-llvm-69b518f6ef738e6f19c00d6e3383c75615ba224e.tar.gz bcm5719-llvm-69b518f6ef738e6f19c00d6e3383c75615ba224e.zip |
typedef fixups, patch from Jean-Daniel Dupas.
llvm-svn: 107794
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp index 586e3d78864..1605a75ec7a 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp +++ b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp @@ -80,7 +80,7 @@ UnwindMacOSXFrameBackchain::GetStackFrameData_i386 (StackFrame *first_frame) std::pair<lldb::addr_t, lldb::addr_t> fp_pc_pair; - typedef struct Frame_i386 + struct Frame_i386 { uint32_t fp; uint32_t pc; @@ -168,7 +168,7 @@ UnwindMacOSXFrameBackchain::GetStackFrameData_x86_64 (StackFrame *first_frame) std::pair<lldb::addr_t, lldb::addr_t> fp_pc_pair; - typedef struct Frame_x86_64 + struct Frame_x86_64 { uint64_t fp; uint64_t pc; diff --git a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h index 86ba6e7ae7f..435fda447eb 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h +++ b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h @@ -53,7 +53,7 @@ public: protected: friend class RegisterContextMacOSXFrameBackchain; - typedef struct Cursor + struct Cursor { lldb::addr_t pc; // Program counter lldb::addr_t fp; // Frame pointer for us with backchain |