[llvm-commits] CVS: llvm/include/llvm/Support/OutputBuffer.h
Chris Lattner
sabre at nondot.org
Thu Apr 19 20:27:54 PDT 2007
Changes in directory llvm/include/llvm/Support:
OutputBuffer.h updated: 1.4 -> 1.5
---
Log message:
Fix a very strange assertion message, patch by Christopher Lamb
CVS: ----------------------------------------------------------------------
---
Diffs of the changes: (+1 -1)
OutputBuffer.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/Support/OutputBuffer.h
diff -u llvm/include/llvm/Support/OutputBuffer.h:1.4 llvm/include/llvm/Support/OutputBuffer.h:1.5
--- llvm/include/llvm/Support/OutputBuffer.h:1.4 Sun Feb 4 20:37:07 2007
+++ llvm/include/llvm/Support/OutputBuffer.h Thu Apr 19 22:27:36 2007
@@ -35,7 +35,7 @@
// 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)) {
More information about the llvm-commits
mailing list