1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-13 10:32:06 +00:00

Replace a #include with a forward-declaration.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-12-03 01:53:18 +00:00
parent c5a1a220ea
commit 92faff2e4c

@ -15,7 +15,6 @@
#ifndef LLVM_CODEGEN_MACHINECONSTANTPOOL_H #ifndef LLVM_CODEGEN_MACHINECONSTANTPOOL_H
#define LLVM_CODEGEN_MACHINECONSTANTPOOL_H #define LLVM_CODEGEN_MACHINECONSTANTPOOL_H
#include "llvm/ADT/FoldingSet.h"
#include <cassert> #include <cassert>
#include <vector> #include <vector>
@ -23,6 +22,7 @@ namespace llvm {
class AsmPrinter; class AsmPrinter;
class Constant; class Constant;
class FoldingSetNodeID;
class TargetData; class TargetData;
class TargetMachine; class TargetMachine;
class Type; class Type;