diff options
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/IGNode.h | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/LiveRange.h | 5 |
2 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/IGNode.h b/llvm/lib/CodeGen/RegAlloc/IGNode.h index 3b1344b85ed..2b782436aad 100644 --- a/llvm/lib/CodeGen/RegAlloc/IGNode.h +++ b/llvm/lib/CodeGen/RegAlloc/IGNode.h @@ -26,7 +26,6 @@ #define IG_NODE_H #include "llvm/CodeGen/LiveRange.h" -#include <assert.h> class RegClass; //---------------------------------------------------------------------------- diff --git a/llvm/lib/CodeGen/RegAlloc/LiveRange.h b/llvm/lib/CodeGen/RegAlloc/LiveRange.h index deab75d0746..588b7b526e0 100644 --- a/llvm/lib/CodeGen/RegAlloc/LiveRange.h +++ b/llvm/lib/CodeGen/RegAlloc/LiveRange.h @@ -1,4 +1,4 @@ -//===-- LiveRange.h - Store info about a live range --------------*- C++ -*--=// +//===-- LiveRange.h - Store info about a live range -------------*- C++ -*-===// // // Implements a live range using a ValueSet. A LiveRange is a simple set // of Values. @@ -14,11 +14,8 @@ #include "llvm/CodeGen/ValueSet.h" #include "llvm/Value.h" -#include <assert.h> - class RegClass; class IGNode; -class Type; class LiveRange : public ValueSet { RegClass *MyRegClass; // register classs (e.g., int, FP) for this LR |