[llvm-commits] [llvm] r64586 - /llvm/trunk/include/llvm/Instructions.h
Mikhail Glushenkov
foldr at codedgers.com
Sun Feb 15 03:32:39 PST 2009
Author: foldr
Date: Sun Feb 15 05:32:31 2009
New Revision: 64586
URL: http://llvm.org/viewvc/llvm-project?rev=64586&view=rev
Log:
80-column violation.
Modified:
llvm/trunk/include/llvm/Instructions.h
Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=64586&r1=64585&r2=64586&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Sun Feb 15 05:32:31 2009
@@ -108,7 +108,8 @@
MallocInst(const Type *Ty, const std::string &NameStr,
Instruction *InsertBefore = 0)
: AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertBefore) {}
- MallocInst(const Type *Ty, const std::string &NameStr, BasicBlock *InsertAtEnd)
+ MallocInst(const Type *Ty, const std::string &NameStr,
+ BasicBlock *InsertAtEnd)
: AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertAtEnd) {}
MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
More information about the llvm-commits
mailing list