1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

[XRay] Remove attribute packed

Followup to D51210.

llvm-svn: 341030
This commit is contained in:
Dean Michael Berris 2018-08-30 07:57:32 +00:00
parent dc767da403
commit 6fd28ff058

View File

@ -31,14 +31,14 @@ struct MetadataBlob {
uint8_t Type : 1;
uint8_t RecordKind : 7;
char Data[15];
} __attribute__((packed));
};
struct FunctionDeltaBlob {
uint8_t Type : 1;
uint8_t RecordKind : 3;
int FuncId : 28;
uint32_t TSCDelta;
} __attribute__((packed));
};
template <size_t Index> struct IndexedMemcpy {
template <