aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/OutputBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/OutputBuffer.h b/include/llvm/Support/OutputBuffer.h
index 6bbdd0b04e..9c6456a1ab 100644
--- a/include/llvm/Support/OutputBuffer.h
+++ b/include/llvm/Support/OutputBuffer.h
@@ -35,7 +35,7 @@ namespace llvm {
// aligned to the specified power of two boundary.
void align(unsigned Boundary) {
assert(Boundary && (Boundary & (Boundary - 1)) == 0 &&
- "Must alitypedef std::vector<unsigned char> DataBuffer;gn to 2^k boundary");
+ "Must align to 2^k boundary");
size_t Size = Output.size();
if (Size & (Boundary - 1)) {