aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-03 07:03:13 +0000
committerChris Lattner <sabre@nondot.org>2002-02-03 07:03:13 +0000
commit825e048596888d46dd06b9722c9cfe429471de31 (patch)
treec0e8d37a6d5027a0a0a42ec41ab360679a834b72 /include/llvm
parentb39346684255c79e2bca5afe28a82a1b8c0372f3 (diff)
downloadexternal_llvm-825e048596888d46dd06b9722c9cfe429471de31.zip
external_llvm-825e048596888d46dd06b9722c9cfe429471de31.tar.gz
external_llvm-825e048596888d46dd06b9722c9cfe429471de31.tar.bz2
Remove extraneous #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/LiveVar/LiveVarSet.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/include/llvm/Analysis/LiveVar/LiveVarSet.h b/include/llvm/Analysis/LiveVar/LiveVarSet.h
index d7761cf..8a33821 100644
--- a/include/llvm/Analysis/LiveVar/LiveVarSet.h
+++ b/include/llvm/Analysis/LiveVar/LiveVarSet.h
@@ -1,4 +1,4 @@
-/* Title: LiveVarSet.h
+/* Title: LiveVarSet.h -*- C++ -*-
Author: Ruchira Sasanka
Date: Jun 30, 01
Purpose: Contains the class definition of LiveVarSet which is used for
@@ -9,19 +9,14 @@
#define LIVE_VAR_SET_H
#include "llvm/Analysis/LiveVar/ValueSet.h"
-#include "llvm/Instruction.h"
-#include "llvm/Type.h"
+class MachineInstr;
-class LiveVarSet : public ValueSet
-{
-
- public:
+struct LiveVarSet : public ValueSet {
// This function applies a machine instr to a live var set (accepts OutSet)
// and makes necessary changes to it (produces InSet).
-
+ //
void applyTranferFuncForMInst(const MachineInstr *const MInst);
-
};