diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-04-20 03:27:36 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-04-20 03:27:36 +0000 |
| commit | bc43e8d0b35a5555a742a901c9114374f868d777 (patch) | |
| tree | 022b2809f9196852fc2fe3dc06c6a0b0261d9e57 | |
| parent | b76ba096fed192fe4a192d4925a6296abbc3d719 (diff) | |
| download | bcm5719-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.h | 2 |
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)) { |

