[llvm-commits] [llvm] r49782 - /llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
Gabor Greif
ggreif at gmail.com
Wed Apr 16 01:41:39 PDT 2008
Author: ggreif
Date: Wed Apr 16 03:41:36 2008
New Revision: 49782
URL: http://llvm.org/viewvc/llvm-project?rev=49782&view=rev
Log:
I was a bit overzealous with my last change. gcc4.0.1 did not diagnose this
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=49782&r1=49781&r2=49782&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Instructions.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Instructions.h Wed Apr 16 03:41:36 2008
@@ -1138,7 +1138,7 @@
Instruction *InsertBefore = 0) {
return new(3) SelectInst(C, S1, S2, Name, InsertBefore);
}
- static SelectInst *Create(Value *C, Value *S1, Value *S2, const std::string &Name = "",
+ static SelectInst *Create(Value *C, Value *S1, Value *S2, const std::string &Name,
BasicBlock *InsertAtEnd) {
return new(3) SelectInst(C, S1, S2, Name, InsertAtEnd);
}
More information about the llvm-commits
mailing list