Skip to content

Commit edf11fd

Browse files
committedAug 30, 2018
[XRay] Remove attribute packed
Followup to D51210. llvm-svn: 341030
1 parent a6c6343 commit edf11fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎llvm/lib/XRay/FDRTraceWriter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ struct MetadataBlob {
3131
uint8_t Type : 1;
3232
uint8_t RecordKind : 7;
3333
char Data[15];
34-
} __attribute__((packed));
34+
};
3535

3636
struct FunctionDeltaBlob {
3737
uint8_t Type : 1;
3838
uint8_t RecordKind : 3;
3939
int FuncId : 28;
4040
uint32_t TSCDelta;
41-
} __attribute__((packed));
41+
};
4242

4343
template <size_t Index> struct IndexedMemcpy {
4444
template <

0 commit comments

Comments
 (0)
Please sign in to comment.