Remove extraneous #includes
authorChris Lattner <sabre@nondot.org>
Sun, 3 Feb 2002 07:03:13 +0000 (07:03 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 3 Feb 2002 07:03:13 +0000 (07:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1634 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LiveVar/LiveVarSet.h

index d7761cfc2051a260c0e35d4d311b4471f931cdd4..8a338218cf51df84e663a82c6d6a28b3fdbe3820 100644 (file)
@@ -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);
-
 };