[llvm-commits] [llvm] r49643 - /llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
Gabor Greif
ggreif at gmail.com
Mon Apr 14 06:18:10 PDT 2008
Author: ggreif
Date: Mon Apr 14 08:18:10 2008
New Revision: 49643
URL: http://llvm.org/viewvc/llvm-project?rev=49643&view=rev
Log:
explicit is of little use here
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=49643&r1=49642&r2=49643&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Instructions.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Instructions.h Mon Apr 14 08:18:10 2008
@@ -2671,9 +2671,9 @@
void *operator new(size_t s) {
return User::operator new(s, 1);
}
- explicit GetResultInst(Value *Aggr, unsigned index,
- const std::string &Name = "",
- Instruction *InsertBefore = 0);
+ GetResultInst(Value *Aggr, unsigned index,
+ const std::string &Name = "",
+ Instruction *InsertBefore = 0);
/// isValidOperands - Return true if an getresult instruction can be
/// formed with the specified operands.
More information about the llvm-commits
mailing list