summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/Utils/ASanStackFrameLayout.h')
-rw-r--r--include/llvm/Transforms/Utils/ASanStackFrameLayout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/ASanStackFrameLayout.h b/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
index d39088ccb4..f5437208f9 100644
--- a/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
+++ b/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
@@ -29,7 +29,7 @@ static const int kAsanStackRightRedzoneMagic = 0xf3;
struct ASanStackVariableDescription {
const char *Name; // Name of the variable that will be displayed by asan
// if a stack-related bug is reported.
- size_t Size; // Size of the variable in bytes.
+ uint64_t Size; // Size of the variable in bytes.
size_t Alignment; // Alignment of the variable (power of 2).
AllocaInst *AI; // The actual AllocaInst.
size_t Offset; // Offset from the beginning of the frame;