diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-12-12 02:13:17 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-12-12 02:13:17 +0000 |
commit | 9497cc2bf8c9664263e62be2510daab3353d61fc (patch) | |
tree | ccd0826104582309c4aa837a4f97be90091fe2f0 /lldb | |
parent | 98347d3f2c745674ce37ba9b004b6fc91cde2bc5 (diff) | |
download | bcm5719-llvm-9497cc2bf8c9664263e62be2510daab3353d61fc.tar.gz bcm5719-llvm-9497cc2bf8c9664263e62be2510daab3353d61fc.zip |
Remove unused mips typedefs.
llvm-svn: 255419
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/Procfs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Linux/Procfs.h b/lldb/source/Plugins/Process/Linux/Procfs.h index 1b383fb5341..cad433fb095 100644 --- a/lldb/source/Plugins/Process/Linux/Procfs.h +++ b/lldb/source/Plugins/Process/Linux/Procfs.h @@ -21,9 +21,6 @@ typedef struct user_fpsimd_state elf_fpregset_t; #define NT_FPREGSET NT_PRFPREG #endif // NT_FPREGSET #elif defined (__mips__) -typedef unsigned long elf_greg_t; -typedef elf_greg_t elf_gregset_t[(sizeof (struct user_regs_struct) / sizeof(elf_greg_t))]; -typedef struct user_fpsimd_state elf_fpregset_t; #ifndef NT_FPREGSET #define NT_FPREGSET NT_PRFPREG #endif // NT_FPREGSET @@ -31,3 +28,4 @@ typedef struct user_fpsimd_state elf_fpregset_t; #else // __ANDROID__ #include <sys/procfs.h> #endif // __ANDROID__ + |