summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CodeGen/ELFWriter.h (renamed from include/llvm/CodeGen/ELFWriter.h)7
-rw-r--r--lib/CodeGen/MachOWriter.h (renamed from include/llvm/CodeGen/MachOWriter.h)8
2 files changed, 7 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/ELFWriter.h b/lib/CodeGen/ELFWriter.h
index 7eb5ca3fea..e64a9c946b 100644
--- a/include/llvm/CodeGen/ELFWriter.h
+++ b/lib/CodeGen/ELFWriter.h
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_CODEGEN_ELFWRITER_H
-#define LLVM_CODEGEN_ELFWRITER_H
+#ifndef ELFWRITER_H
+#define ELFWRITER_H
#include "llvm/CodeGen/MachineFunctionPass.h"
#include <list>
@@ -34,13 +34,12 @@ namespace llvm {
return *(MachineCodeEmitter*)MCE;
}
+ ELFWriter(std::ostream &O, TargetMachine &TM);
~ELFWriter();
typedef std::vector<unsigned char> DataBuffer;
protected:
- ELFWriter(std::ostream &O, TargetMachine &TM);
-
/// Output stream to send the resultant object file to.
///
std::ostream &O;
diff --git a/include/llvm/CodeGen/MachOWriter.h b/lib/CodeGen/MachOWriter.h
index bff94b4b2f..a26945874a 100644
--- a/include/llvm/CodeGen/MachOWriter.h
+++ b/lib/CodeGen/MachOWriter.h
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_CODEGEN_MACHOWRITER_H
-#define LLVM_CODEGEN_MACHOWRITER_H
+#ifndef MACHOWRITER_H
+#define MACHOWRITER_H
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
@@ -87,6 +87,8 @@ namespace llvm {
MachineCodeEmitter &getMachineCodeEmitter() const {
return *(MachineCodeEmitter*)MCE;
}
+
+ MachOWriter(std::ostream &O, TargetMachine &TM);
virtual ~MachOWriter();
virtual const char *getPassName() const {
@@ -95,8 +97,6 @@ namespace llvm {
typedef std::vector<unsigned char> DataBuffer;
protected:
- MachOWriter(std::ostream &O, TargetMachine &TM);
-
/// Output stream to send the resultant object file to.
///
std::ostream &O;