summaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-09 18:35:38 +0000
committerChris Lattner <sabre@nondot.org>2002-04-09 18:35:38 +0000
commit184b2fa1b9b536e6c2bc27ba3f43dd42b2a557f9 (patch)
treeb6529aa9de4002b03d643af98b2b1ba6c8d5fd64 /lib/Bytecode
parentcc5933c47e98fbfb4b5047da5e71751637515960 (diff)
downloadllvm-184b2fa1b9b536e6c2bc27ba3f43dd42b2a557f9.tar.gz
llvm-184b2fa1b9b536e6c2bc27ba3f43dd42b2a557f9.tar.bz2
llvm-184b2fa1b9b536e6c2bc27ba3f43dd42b2a557f9.tar.xz
Use opaque decl instead of #include
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Writer/SlotCalculator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.h b/lib/Bytecode/Writer/SlotCalculator.h
index d80515d137..91006d7017 100644
--- a/lib/Bytecode/Writer/SlotCalculator.h
+++ b/lib/Bytecode/Writer/SlotCalculator.h
@@ -13,12 +13,12 @@
#ifndef LLVM_SLOTCALCULATOR_H
#define LLVM_SLOTCALCULATOR_H
-#include "llvm/SymTabValue.h"
#include <vector>
#include <map>
class Value;
class Module;
class Function;
+class SymbolTable;
class SlotCalculator {
const Module *TheModule;