diff options
author | Chris Lattner <sabre@nondot.org> | 2002-02-19 19:36:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-02-19 19:36:56 +0000 |
commit | a92055e3206bd3bdf42773fda58b94080d979f50 (patch) | |
tree | 38ee7bebf3970a950841662a830223145474b330 | |
parent | d6970adc6b8b627d2e4e302bd31c496806cfd351 (diff) | |
download | bcm5719-llvm-a92055e3206bd3bdf42773fda58b94080d979f50.tar.gz bcm5719-llvm-a92055e3206bd3bdf42773fda58b94080d979f50.zip |
Minor cleanups I missed
llvm-svn: 1778
-rw-r--r-- | llvm/include/llvm/InstrTypes.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/include/llvm/InstrTypes.h b/llvm/include/llvm/InstrTypes.h index d37a1713a6f..00845e925fa 100644 --- a/llvm/include/llvm/InstrTypes.h +++ b/llvm/include/llvm/InstrTypes.h @@ -11,9 +11,6 @@ #include "llvm/Instruction.h" -class Method; -class SymTabValue; - //===----------------------------------------------------------------------===// // TerminatorInst Class //===----------------------------------------------------------------------===// @@ -25,7 +22,7 @@ class TerminatorInst : public Instruction { protected: TerminatorInst(Instruction::TermOps iType); TerminatorInst(const Type *Ty, Instruction::TermOps iType, - const std::string &Name = ""); + const std::string &Name = ""); public: // Terminators must implement the methods required by Instruction... |