summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-19 19:36:56 +0000
committerChris Lattner <sabre@nondot.org>2002-02-19 19:36:56 +0000
commitb41f94b828d12caa0ae6f3eae34d8a2d7c93eeb1 (patch)
tree2500cdc1014e81d73092159778d28d43a96af61e /include/llvm
parent0b6727dd9dea839644e0f47f868dbfd1e2f9f8ed (diff)
downloadllvm-b41f94b828d12caa0ae6f3eae34d8a2d7c93eeb1.tar.gz
llvm-b41f94b828d12caa0ae6f3eae34d8a2d7c93eeb1.tar.bz2
llvm-b41f94b828d12caa0ae6f3eae34d8a2d7c93eeb1.tar.xz
Minor cleanups I missed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/InstrTypes.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h
index d37a1713a6..00845e925f 100644
--- a/include/llvm/InstrTypes.h
+++ b/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...