diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-03-16 17:42:47 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-03-16 17:42:47 +0000 |
commit | 3621309e8d32fc1d75c555392f4d0970832cc268 (patch) | |
tree | d6f0dd23ee854e302f3e881d85bcd19e4d54f376 /llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h | |
parent | a63b8e8227bc3460dc15da826bf93139a56ce4ec (diff) | |
download | bcm5719-llvm-3621309e8d32fc1d75c555392f4d0970832cc268.tar.gz bcm5719-llvm-3621309e8d32fc1d75c555392f4d0970832cc268.zip |
Rearrange fields. NFC.
llvm-svn: 297967
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h b/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h index 6b16afa7e9e..9c5925ece18 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h @@ -84,9 +84,9 @@ public: /// entry. class DwarfExpression { protected: - unsigned DwarfVersion; /// Current Fragment Offset in Bits. uint64_t OffsetInBits = 0; + unsigned DwarfVersion; /// Sometimes we need to add a DW_OP_bit_piece to describe a subregister. unsigned SubRegisterSizeInBits = 0; |