summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Bartolomeo <dbartol@microsoft.com>2015-12-24 18:25:54 +0000
committerDave Bartolomeo <dbartol@microsoft.com>2015-12-24 18:25:54 +0000
commitde0bfee769899bf6abb5c31449dbad839b676063 (patch)
tree4a18f4bb4ee930ae84d8d38f4c69b64f16769f58
parent89ba802b92883c2237130ca6f3dfe19499efd1f4 (diff)
downloadbcm5719-llvm-de0bfee769899bf6abb5c31449dbad839b676063.tar.gz
bcm5719-llvm-de0bfee769899bf6abb5c31449dbad839b676063.zip
Fix initializer order warning in TypeRecord.h
llvm-svn: 256386
-rw-r--r--llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h b/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
index 713b70fdccb..21755f5d9b0 100644
--- a/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
+++ b/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
@@ -241,8 +241,8 @@ private:
class BitFieldRecord : TypeRecord {
public:
BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset)
- : TypeRecord(TypeRecordKind::BitField), Type(Type), BitOffset(BitOffset),
- BitSize(BitSize) {}
+ : TypeRecord(TypeRecordKind::BitField), Type(Type), BitSize(BitSize),
+ BitOffset(BitOffset) {}
TypeIndex getType() const { return Type; }
uint8_t getBitOffset() const { return BitOffset; }
OpenPOWER on IntegriCloud