commit | 69b518f6ef738e6f19c00d6e3383c75615ba224e | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Wed Jul 07 17:07:17 2010 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Wed Jul 07 17:07:17 2010 +0000 |
tree | f9addb58b49310240751ede69eb79cf86aa35504 | |
parent | 72db59664f3b0c039b5807e1eadef08ab3f5cde9 [diff] |
typedef fixups, patch from Jean-Daniel Dupas. llvm-svn: 107794
diff --git a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp index 586e3d7..1605a75 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp +++ b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
@@ -80,7 +80,7 @@ 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 @@ 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 86ba6e7..435fda4 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h +++ b/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
@@ -53,7 +53,7 @@ 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