Fix a compilation error that caused the nightly test to fail.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34239 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-02-13 09:26:04 +00:00
parent 80483bba3d
commit 9964d75d83

View File

@ -95,7 +95,7 @@ protected:
: Instruction(Ty, iType, &Op, 1, Name, IB), Op(V, this) {
}
UnaryInstruction(const Type *Ty, unsigned iType, Value *V,
const char *Name = 0, BasicBlock *IAE)
const char *Name, BasicBlock *IAE)
: Instruction(Ty, iType, &Op, 1, Name, IAE), Op(V, this) {
}
public: