diff options
Diffstat (limited to 'gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp')
| -rw-r--r-- | gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp b/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp index 6ba31ccf1e3..3ae04538d62 100644 --- a/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp +++ b/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp @@ -262,7 +262,7 @@ std::pair<uint64_t, unsigned> MicrosoftCXXABI::getMemberPointerWidthAndAlign( Align = Target.getIntAlign(); if (Target.getTriple().isArch64Bit()) - Width = llvm::RoundUpToAlignment(Width, Align); + Width = llvm::alignTo(Width, Align); return std::make_pair(Width, Align); } |
