Skip to content

Commit ab7d421

Browse files
committed
size_t -> uint64_t after 0539246
Fixes some bots where the two differ.
1 parent 610ac8d commit ab7d421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static inline bool CompareVars(const ASanStackVariableDescription &a,
3333

3434
// We also force minimal alignment for all vars to kMinAlignment so that vars
3535
// with e.g. alignment 1 and alignment 16 do not get reordered by CompareVars.
36-
static const size_t kMinAlignment = 16;
36+
static const uint64_t kMinAlignment = 16;
3737

3838
// We want to add a full redzone after every variable.
3939
// The larger the variable Size the larger is the redzone.

0 commit comments

Comments
 (0)