diff --git a/clang/include/clang/AST/CharUnits.h b/clang/include/clang/AST/CharUnits.h index 69dee4cdf67d..72ca9f5cd67d 100644 --- a/clang/include/clang/AST/CharUnits.h +++ b/clang/include/clang/AST/CharUnits.h @@ -173,12 +173,7 @@ namespace clang { /// Given that this is a non-zero alignment value, what is the /// alignment at the given offset? CharUnits alignmentAtOffset(CharUnits offset) { - // alignment: 0010000 - // offset: 1011100 - // lowBits: 0001011 - // result: 0000100 - QuantityType lowBits = (Quantity-1) & (offset.Quantity-1); - return CharUnits((lowBits + 1) & ~lowBits); + return CharUnits(llvm::MinAlign(Quantity, offset.Quantity)); }