summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-20 03:27:36 +0000
committerChris Lattner <sabre@nondot.org>2007-04-20 03:27:36 +0000
commitbc43e8d0b35a5555a742a901c9114374f868d777 (patch)
tree022b2809f9196852fc2fe3dc06c6a0b0261d9e57
parentb76ba096fed192fe4a192d4925a6296abbc3d719 (diff)
downloadbcm5719-llvm-bc43e8d0b35a5555a742a901c9114374f868d777.tar.gz
bcm5719-llvm-bc43e8d0b35a5555a742a901c9114374f868d777.zip
Fix a very strange assertion message, patch by Christopher Lamb
CVS: ---------------------------------------------------------------------- llvm-svn: 36267
-rw-r--r--llvm/include/llvm/Support/OutputBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/OutputBuffer.h b/llvm/include/llvm/Support/OutputBuffer.h
index 6bbdd0b04e4..9c6456a1ab4 100644
--- a/llvm/include/llvm/Support/OutputBuffer.h
+++ b/llvm/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)) {
OpenPOWER on IntegriCloud