summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-11 22:41:34 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-11 22:41:34 +0000
commitd0fde30ce850b78371fd1386338350591f9ff494 (patch)
tree83bb73e83f54fc8e1e474d116250ae2779562f7e /include/llvm/Assembly
parent0d723acf15b0326e2df09ecb614b02a617f536e4 (diff)
downloadllvm-d0fde30ce850b78371fd1386338350591f9ff494.tar.gz
llvm-d0fde30ce850b78371fd1386338350591f9ff494.tar.bz2
llvm-d0fde30ce850b78371fd1386338350591f9ff494.tar.xz
Put all LLVM code into the llvm namespace, as per bug 109.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/AsmAnnotationWriter.h5
-rw-r--r--include/llvm/Assembly/CWriter.h5
-rw-r--r--include/llvm/Assembly/CachedWriter.h4
-rw-r--r--include/llvm/Assembly/Parser.h4
-rw-r--r--include/llvm/Assembly/PrintModulePass.h4
-rw-r--r--include/llvm/Assembly/Writer.h5
6 files changed, 27 insertions, 0 deletions
diff --git a/include/llvm/Assembly/AsmAnnotationWriter.h b/include/llvm/Assembly/AsmAnnotationWriter.h
index 192cb3de0b..3beda6df03 100644
--- a/include/llvm/Assembly/AsmAnnotationWriter.h
+++ b/include/llvm/Assembly/AsmAnnotationWriter.h
@@ -18,6 +18,9 @@
#define LLVM_ASSEMBLY_ASMANNOTATIONWRITER_H
#include <iosfwd>
+
+namespace llvm {
+
class Function;
class BasicBlock;
class Instruction;
@@ -37,4 +40,6 @@ struct AssemblyAnnotationWriter {
virtual void emitInstructionAnnot(const Instruction *I, std::ostream &OS) {}
};
+} // End llvm namespace
+
#endif
diff --git a/include/llvm/Assembly/CWriter.h b/include/llvm/Assembly/CWriter.h
index cc7a358a9b..3029787ca4 100644
--- a/include/llvm/Assembly/CWriter.h
+++ b/include/llvm/Assembly/CWriter.h
@@ -16,7 +16,12 @@
#define LLVM_ASSEMBLY_CWRITER_H
#include <iosfwd>
+
+namespace llvm {
+
class Pass;
Pass *createWriteToCPass(std::ostream &o);
+} // End llvm namespace
+
#endif
diff --git a/include/llvm/Assembly/CachedWriter.h b/include/llvm/Assembly/CachedWriter.h
index dbddacde93..4acd3de4da 100644
--- a/include/llvm/Assembly/CachedWriter.h
+++ b/include/llvm/Assembly/CachedWriter.h
@@ -20,6 +20,8 @@
#include "llvm/Value.h"
#include <iostream>
+namespace llvm {
+
class Module;
class PointerType;
class SlotCalculator;
@@ -82,4 +84,6 @@ public:
}
};
+} // End llvm namespace
+
#endif
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h
index 4f1863f071..dc1b17eb50 100644
--- a/include/llvm/Assembly/Parser.h
+++ b/include/llvm/Assembly/Parser.h
@@ -16,6 +16,8 @@
#include <string>
+namespace llvm {
+
class Module;
class ParseException;
@@ -70,4 +72,6 @@ private :
ParseException &operator=(const ParseException &E); // objects by reference
};
+} // End llvm namespace
+
#endif
diff --git a/include/llvm/Assembly/PrintModulePass.h b/include/llvm/Assembly/PrintModulePass.h
index e211e8bdae..28100805a7 100644
--- a/include/llvm/Assembly/PrintModulePass.h
+++ b/include/llvm/Assembly/PrintModulePass.h
@@ -21,6 +21,8 @@
#include "llvm/Pass.h"
#include "llvm/Module.h"
+namespace llvm {
+
class PrintModulePass : public Pass {
std::ostream *Out; // ostream to print on
bool DeleteStream; // Delete the ostream in our dtor?
@@ -72,4 +74,6 @@ public:
}
};
+} // End llvm namespace
+
#endif
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 5798ae8ac7..9f89b3192f 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -24,6 +24,9 @@
#define LLVM_ASSEMBLY_WRITER_H
#include <iosfwd>
+
+namespace llvm {
+
class Type;
class Module;
class Value;
@@ -43,4 +46,6 @@ std::ostream &WriteTypeSymbolic(std::ostream &, const Type *, const Module *M);
std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
bool PrintName = true, const Module *Context = 0);
+} // End llvm namespace
+
#endif