[llvm-commits] CVS: llvm/include/llvm/InstrTypes.h

Reid Spencer reid at x10sys.com
Tue Feb 13 01:26:27 PST 2007



Changes in directory llvm/include/llvm:

InstrTypes.h updated: 1.61 -> 1.62
---
Log message:

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


---
Diffs of the changes:  (+1 -1)

 InstrTypes.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/InstrTypes.h
diff -u llvm/include/llvm/InstrTypes.h:1.61 llvm/include/llvm/InstrTypes.h:1.62
--- llvm/include/llvm/InstrTypes.h:1.61	Tue Feb 13 01:54:42 2007
+++ llvm/include/llvm/InstrTypes.h	Tue Feb 13 03:26:04 2007
@@ -95,7 +95,7 @@
     : 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:






More information about the llvm-commits mailing list