From 9964d75d839b77c3fb229b2766af29adbcef2e13 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 13 Feb 2007 09:26:04 +0000 Subject: [PATCH] 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 --- include/llvm/InstrTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.34.1