Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Common/DataStructures/SparseBitVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct BVSparseNode
#endif
};

#if defined(_M_X64)
#if defined(_M_ARM64) || defined(_M_X64)
CompileAssert(sizeof(BVSparseNode) == 24); // Performance assert, BVSparseNode is heavily used in the backend, do perf measurement before changing this.
#else
CompileAssert(sizeof(BVSparseNode) == 16);
Expand Down