diff options
| author | Fangrui Song <maskray@google.com> | 2019-05-14 08:55:50 +0000 |
|---|---|---|
| committer | Fangrui Song <maskray@google.com> | 2019-05-14 08:55:50 +0000 |
| commit | efe8e7e36d01cfa19b8c405fffc3411c8c74cabf (patch) | |
| tree | c606cbe8c4fbe0121d85b6d1e02ca27ed505fdf4 /lldb/source/Plugins/Process/Utility | |
| parent | 004393681c25e34e921adccc69ae6378090dee54 (diff) | |
| download | bcm5719-llvm-efe8e7e36d01cfa19b8c405fffc3411c8c74cabf.tar.gz bcm5719-llvm-efe8e7e36d01cfa19b8c405fffc3411c8c74cabf.zip | |
typedef enum -> enum
Reviewed By: labath
Differential Revision: https://reviews.llvm.org/D61883
llvm-svn: 360654
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/ARMDefines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Utility/ARMDefines.h b/lldb/source/Plugins/Process/Utility/ARMDefines.h index 87f77b93299..1f7eb54d10e 100644 --- a/lldb/source/Plugins/Process/Utility/ARMDefines.h +++ b/lldb/source/Plugins/Process/Utility/ARMDefines.h @@ -19,14 +19,14 @@ namespace lldb_private { // ARM shifter types -typedef enum { +enum ARM_ShifterType { SRType_LSL, SRType_LSR, SRType_ASR, SRType_ROR, SRType_RRX, SRType_Invalid -} ARM_ShifterType; +}; // ARM conditions // Meaning (integer) Meaning (floating-point) // Condition flags |

