diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-13 09:26:04 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-13 09:26:04 +0000 |
| commit | 9964d75d839b77c3fb229b2766af29adbcef2e13 (patch) | |
| tree | d92cb125d9444f06cbe850d88d9717d7ca0ff49b | |
| parent | 80483bba3d35b86f73fbb6b233d3fe9ade70f517 (diff) | |
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
| -rw-r--r-- | include/llvm/InstrTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h index 0fff238f1c..ce5885fbc7 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: |
