HomeSort by relevance Sort by last modified time
    Searched defs:MCSection (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/MC/
MCSection.cpp 1 //===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
10 #include "llvm/MC/MCSection.h"
17 // MCSection
20 MCSection::~MCSection() {
  /external/llvm/include/llvm/MC/
MCSection.h 1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
10 // This file declares the MCSection class.
24 /// MCSection - Instances of this class represent a uniqued identifier for a
27 class MCSection {
37 MCSection(const MCSection&) LLVM_DELETED_FUNCTION;
38 void operator=(const MCSection&) LLVM_DELETED_FUNCTION;
40 MCSection(SectionVariant V, SectionKind K) : Variant(V), Kind(K) {}
44 virtual ~MCSection();
69 static bool classof(const MCSection *) { return true;
    [all...]

Completed in 20 milliseconds