From: Reid Spencer Date: Tue, 13 Feb 2007 09:26:04 +0000 (+0000) Subject: Fix a compilation error that caused the nightly test to fail. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9964d75d839b77c3fb229b2766af29adbcef2e13;p=oota-llvm.git 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 --- diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h index 0fff238f1c2..ce5885fbc7b 100644 --- a/include/llvm/InstrTypes.h +++ b/include/llvm/InstrTypes.h @@ -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: