diff options
-rw-r--r-- | llvm/lib/XRay/FDRTraceWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/XRay/FDRTraceWriter.cpp b/llvm/lib/XRay/FDRTraceWriter.cpp index 6214a6b80c1..117b3f3ad91 100644 --- a/llvm/lib/XRay/FDRTraceWriter.cpp +++ b/llvm/lib/XRay/FDRTraceWriter.cpp @@ -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 < |