[llvm-commits] [llvm] r49636 - /llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
Gabor Greif
ggreif at gmail.com
Mon Apr 14 02:12:15 PDT 2008
Author: ggreif
Date: Mon Apr 14 04:12:15 2008
New Revision: 49636
URL: http://llvm.org/viewvc/llvm-project?rev=49636&view=rev
Log:
ooops, gcc4.0.1 did not catch this, gcc3.4.6 did!
Modified:
llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
Modified: llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/use-diet/include/llvm/Instructions.h?rev=49636&r1=49635&r2=49636&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Instructions.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Instructions.h Mon Apr 14 04:12:15 2008
@@ -936,7 +936,7 @@
/// @brief Construct a CallInst from a range of arguments
template<typename InputIterator>
CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
- const std::string &Name = "", Instruction *InsertBefore);
+ const std::string &Name, Instruction *InsertBefore);
/// Construct a CallInst given a range of arguments. InputIterator
/// must be a random-access iterator pointing to contiguous storage
More information about the llvm-commits
mailing list