blob: ccf4a7dddf736a2a1fe55ad30203ee7239847f87 [file] [log] [blame]
Chris Lattnered47a042009-07-31 17:02:00 +00001//===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
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//===----------------------------------------------------------------------===//
9
10#include "llvm/MC/MCSection.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000011#include "llvm/MC/MCAsmInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000012#include "llvm/MC/MCContext.h"
Chris Lattner892e1822009-08-08 22:41:53 +000013#include "llvm/Support/raw_ostream.h"
Chris Lattnered47a042009-07-31 17:02:00 +000014using namespace llvm;
15
Chris Lattner892e1822009-08-08 22:41:53 +000016//===----------------------------------------------------------------------===//
17// MCSection
18//===----------------------------------------------------------------------===//
19
Chris Lattnered47a042009-07-31 17:02:00 +000020MCSection::~MCSection() {
21}
22