Deleted Added
full compact
OcamlGCPrinter.cpp (198090) OcamlGCPrinter.cpp (198892)
1//===-- OcamlGCPrinter.cpp - Ocaml frametable emitter ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 6 unchanged lines hidden (view full) ---

15#include "llvm/CodeGen/AsmPrinter.h"
16#include "llvm/CodeGen/GCMetadataPrinter.h"
17#include "llvm/Module.h"
18#include "llvm/MC/MCStreamer.h"
19#include "llvm/MC/MCAsmInfo.h"
20#include "llvm/Target/TargetData.h"
21#include "llvm/Target/TargetLoweringObjectFile.h"
22#include "llvm/Target/TargetMachine.h"
1//===-- OcamlGCPrinter.cpp - Ocaml frametable emitter ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 6 unchanged lines hidden (view full) ---

15#include "llvm/CodeGen/AsmPrinter.h"
16#include "llvm/CodeGen/GCMetadataPrinter.h"
17#include "llvm/Module.h"
18#include "llvm/MC/MCStreamer.h"
19#include "llvm/MC/MCAsmInfo.h"
20#include "llvm/Target/TargetData.h"
21#include "llvm/Target/TargetLoweringObjectFile.h"
22#include "llvm/Target/TargetMachine.h"
23#include "llvm/Support/Compiler.h"
24#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/raw_ostream.h"
26using namespace llvm;
27
28namespace {
29
23#include "llvm/Support/ErrorHandling.h"
24#include "llvm/Support/raw_ostream.h"
25using namespace llvm;
26
27namespace {
28
30 class VISIBILITY_HIDDEN OcamlGCMetadataPrinter : public GCMetadataPrinter {
29 class OcamlGCMetadataPrinter : public GCMetadataPrinter {
31 public:
32 void beginAssembly(raw_ostream &OS, AsmPrinter &AP,
33 const MCAsmInfo &MAI);
34
35 void finishAssembly(raw_ostream &OS, AsmPrinter &AP,
36 const MCAsmInfo &MAI);
37 };
38

--- 128 unchanged lines hidden ---
30 public:
31 void beginAssembly(raw_ostream &OS, AsmPrinter &AP,
32 const MCAsmInfo &MAI);
33
34 void finishAssembly(raw_ostream &OS, AsmPrinter &AP,
35 const MCAsmInfo &MAI);
36 };
37

--- 128 unchanged lines hidden ---