2009-06-23 22:01:43 +00:00
|
|
|
//===- MCAtom.h - Machine Code Atoms ----------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCATOM_H
|
|
|
|
#define LLVM_MC_MCATOM_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MCAtom {
|
|
|
|
MCSection *Section;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MCAtom(MCSection *_Section) : Section(_Section) {}
|
2009-06-24 01:03:06 +00:00
|
|
|
|
|
|
|
MCSection *getSection() { return Section; }
|
2009-06-23 22:01:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|