Fix a compilation error that caused the nightly test to fail.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 13 Feb 2007 09:26:04 +0000 (09:26 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 13 Feb 2007 09:26:04 +0000 (09:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34239 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/InstrTypes.h

index 0fff238f1c2ccb6b16be693b501b33ebfced310e..ce5885fbc7ba0d58ae6b10d9a2064bf5b62f5384 100644 (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: