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

  /external/llvm/lib/MC/
MCFunction.cpp 1 //===-- lib/MC/MCFunction.cpp -----------------------------------*- C++ -*-===//
10 #include "llvm/MC/MCFunction.h"
17 // MCFunction
19 MCFunction::MCFunction(StringRef Name)
23 MCFunction::~MCFunction() {
28 MCBasicBlock &MCFunction::createBlock(const MCTextAtom &TA) {
35 MCBasicBlock::MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent)
  /external/llvm/include/llvm/MC/
MCFunction.h 1 //===-- llvm/MC/MCFunction.h ------------------------------------*- C++ -*-===//
25 class MCFunction;
32 /// Create a basic block using MCFunction::createBlock.
36 // MCFunction owns the basic block.
37 MCFunction *Parent;
38 friend class MCFunction;
39 MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent);
52 /// \name Get the owning MCFunction.
54 const MCFunction *getParent() const { return Parent; }
55 MCFunction *getParent() { return Parent;
    [all...]

Completed in 168 milliseconds